NAME
GunghoX::FollowLinks::Rule::URI - Follow Dependig On URI
SYNOPSIS
use GunghoX::FollowLinks::Rule qw(FOLLOW_ALLOW FOLLOW_DENY);
use GunghoX::FollowLinks::Rule::URI;
GunghoX::FollowLinks::Rule::URI->new(
match => [
{ action => FOLLOW_DENY, host => qr/^.+\.example\.org$/ },
{ action => FOLLOW_ALLOW, host => qr/^.+\.example\.com$/ },
]
);
DESCRIPTION
This is a rule that matches against a URL using URI::Match.