X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FConfig-Any.git;a=blobdiff_plain;f=lib%2FConfig%2FAny%2FPerl.pm;h=936efab7540846b6aea7a6554b79e91ba1ea5e60;hp=ed3752bd339fe4b2e1a0dec7fd5486a425d55561;hb=8af0a7cf96c671f13244fec2e0f15a4c13f2737d;hpb=a918b0b8b7952db918dfabb8dc72bf34832d43d0 diff --git a/lib/Config/Any/Perl.pm b/lib/Config/Any/Perl.pm index ed3752b..936efab 100644 --- a/lib/Config/Any/Perl.pm +++ b/lib/Config/Any/Perl.pm @@ -47,13 +47,23 @@ sub load { my $content; unless ( $content = $cache{ $file } ) { - $content = eval { require $file }; + $content = require $file; $cache{ $file } = $content; } return $content; } +=head2 is_supported( ) + +Returns true. + +=cut + +sub is_supported { + return 1; +} + =head1 AUTHOR Brian Cassidy Ebricas@cpan.orgE