X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FConfig-Any.git;a=blobdiff_plain;f=lib%2FConfig%2FAny%2FGeneral.pm;h=5c697e92e1a058e495245f81fac36f93cb0de10e;hp=6aceb985bf4d236b5f7a0c8f8d6ce5df5019262d;hb=2b645c42bc8c5c33f533f7ea97c812f1fc1636d7;hpb=72628dc786ef43d546023d6f17a86c3f5edeb21a diff --git a/lib/Config/Any/General.pm b/lib/Config/Any/General.pm index 6aceb98..5c697e9 100644 --- a/lib/Config/Any/General.pm +++ b/lib/Config/Any/General.pm @@ -2,6 +2,9 @@ package Config::Any::General; use strict; use warnings; +use Carp; + +use base 'Config::Any::Base'; =head1 NAME @@ -14,6 +17,7 @@ Loads Config::General files. Example: name = TestApp foo bar + bar [ arrayref-value ] qux xyzzy @@ -48,6 +52,10 @@ sub load { $args->{ -ConfigFile } = $file; require Config::General; + Config::General->VERSION('2.47'); + + $args->{ -ForceArray } = 1 unless exists $args->{ -ForceArray }; + my $configfile = Config::General->new( %$args ); my $config = { $configfile->getall }; @@ -68,16 +76,13 @@ sub _test_perl { return defined $is_perl_src; } -=head2 is_supported( ) +=head2 requires_all_of( ) -Returns true if L is available. +Specifies that this module requires L in order to work. =cut -sub is_supported { - eval { require Config::General; }; - return $@ ? 0 : 1; -} +sub requires_all_of { [ 'Config::General' ] } =head1 AUTHOR @@ -89,7 +94,7 @@ Joel Bernstein C<< >> =head1 COPYRIGHT AND LICENSE -Copyright 2007 by Brian Cassidy +Copyright 2006-2010 by Brian Cassidy Portions Copyright 2006 Portugal Telecom