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=7bb1d1bbf385bee2ea846692e2253e63c42444f2;hp=6aceb985bf4d236b5f7a0c8f8d6ce5df5019262d;hb=9dbebe277d9dc4fef8eee9a57b8e2475a125b403;hpb=72628dc786ef43d546023d6f17a86c3f5edeb21a diff --git a/lib/Config/Any/General.pm b/lib/Config/Any/General.pm index 6aceb98..7bb1d1b 100644 --- a/lib/Config/Any/General.pm +++ b/lib/Config/Any/General.pm @@ -3,6 +3,8 @@ package Config::Any::General; use strict; use warnings; +use base 'Config::Any::Base'; + =head1 NAME Config::Any::General - Load Config::General files @@ -14,6 +16,7 @@ Loads Config::General files. Example: name = TestApp foo bar + bar [ arrayref-value ] qux xyzzy @@ -48,6 +51,9 @@ sub load { $args->{ -ConfigFile } = $file; require Config::General; + + $args->{ -ForceArray } = 1 unless exists $args->{ -ForceArray }; + my $configfile = Config::General->new( %$args ); my $config = { $configfile->getall }; @@ -68,16 +74,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', '2.47' ] } =head1 AUTHOR @@ -89,7 +92,7 @@ Joel Bernstein C<< >> =head1 COPYRIGHT AND LICENSE -Copyright 2007 by Brian Cassidy +Copyright 2006-2010 by Brian Cassidy Portions Copyright 2006 Portugal Telecom