Acme-Spider

 view release on metacpan or  search on metacpan

Spider.pm  view on Meta::CPAN

	qr/^(?:$data)/;
};

sub victim {
	my ($file) = @_;
	return scalar $file =~ $re;
}

sub bite {
	my ($self, $file) = @_;
	# we need to expand this test to include other Damian modules.
	if (victim($file)) {
		carp "$file doesn't like spiders";
		return 0;
	}
	return undef;
}

BEGIN { unshift @INC, \&bite }

=head1 AUTHORS



( run in 0.732 second using v1.01-cache-2.11-cpan-97f6503c9c8 )