X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FConfig-Any.git;a=blobdiff_plain;f=lib%2FConfig%2FAny%2FXML.pm;h=3f2f68b01c04668cdf52a7c2df34a92b4317f21b;hp=ca2d55b76ddc38c57efdaf09f1368f5e02bc7ce6;hb=f9f3d682a0332cec1207764dcada85a7ff7750f0;hpb=11501cf7c7fd46e8723c2de165a00e2f8deefc72 diff --git a/lib/Config/Any/XML.pm b/lib/Config/Any/XML.pm index ca2d55b..3f2f68b 100644 --- a/lib/Config/Any/XML.pm +++ b/lib/Config/Any/XML.pm @@ -3,6 +3,8 @@ package Config::Any::XML; use strict; use warnings; +use base 'Config::Any::Base'; + =head1 NAME Config::Any::XML - Load XML config files @@ -55,14 +57,13 @@ sub load { } sub _coerce { - # coerce the XML-parsed config into the correct format my $class = shift; my $config = shift; my $out; for my $k ( keys %$config ) { my $ref = $config->{ $k }; - my $name = ref $ref ? delete $ref->{ name } : undef; + my $name = ref $ref eq 'HASH' ? delete $ref->{ name } : undef; if ( defined $name ) { $out->{ $k }->{ $name } = $ref; } @@ -73,16 +74,14 @@ sub _coerce { $out; } -=head2 is_supported( ) +=head2 requires_all_of( ) -Returns true if L is available. +Specifies that this module requires L and L +in order to work. =cut -sub is_supported { - eval { require XML::Simple; }; - return $@ ? 0 : 1; -} +sub requires_all_of { 'XML::Simple', 'XML::NamespaceSupport' } =head1 CAVEATS @@ -103,7 +102,7 @@ Joel Bernstein Erataxis@cpan.orgE =head1 COPYRIGHT AND LICENSE -Copyright 2007 by Brian Cassidy +Copyright 2006-2015 by Brian Cassidy This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.