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=74776e2cc95050dfec2680090ed941e089c66a4a;hp=749b3c4eb1f74719f1e2f7e12c72aea9d5f4b19b;hb=e3c5f84b28bcbbf9b2c7dadde2c3278d72fa6ae4;hpb=dcfb1d1d1a544d27a82cb174168df23abc539acb diff --git a/lib/Config/Any/General.pm b/lib/Config/Any/General.pm index 749b3c4..74776e2 100644 --- a/lib/Config/Any/General.pm +++ b/lib/Config/Any/General.pm @@ -16,6 +16,7 @@ Loads Config::General files. Example: name = TestApp foo bar + bar [ arrayref-value ] qux xyzzy @@ -50,6 +51,13 @@ sub load { $args->{ -ConfigFile } = $file; require Config::General; + + if (Config::General->VERSION < 2.47) { + die "Config::General version 2.47 or greater required"; + } + + $args->{ -ForceArray } = 1 unless exists $args->{ -ForceArray }; + my $configfile = Config::General->new( %$args ); my $config = { $configfile->getall }; @@ -88,7 +96,7 @@ Joel Bernstein C<< >> =head1 COPYRIGHT AND LICENSE -Copyright 2007 by Brian Cassidy +Copyright 2006-2010 by Brian Cassidy Portions Copyright 2006 Portugal Telecom