X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FConfig%2FAny%2FXML.pm;h=c9b979fa37e3d6145f263ed671c6037b70122f24;hb=c84f1613b60ec2bd2df1a88e6618f36246c24c4b;hp=a5fc8819bfd5efc1d7464f25620fea9169b04a79;hpb=92a04e78451078b33f75e7c44d247b024c27b4f7;p=p5sagit%2FConfig-Any.git diff --git a/lib/Config/Any/XML.pm b/lib/Config/Any/XML.pm index a5fc881..c9b979f 100644 --- a/lib/Config/Any/XML.pm +++ b/lib/Config/Any/XML.pm @@ -73,19 +73,26 @@ sub _coerce { $out; } -=head1 AUTHOR +=head2 is_supported( ) -=over 4 +Returns true if L is available. + +=cut -=item * Brian Cassidy Ebricas@cpan.orgE +sub is_supported { + eval { require XML::Simple; }; + return $@ ? 0 : 1; +} -=item * Joel Bernstein Erataxis@cpan.orgE +=head1 AUTHORS -=back +Brian Cassidy Ebricas@cpan.orgE + +Joel Bernstein Erataxis@cpan.orgE =head1 COPYRIGHT AND LICENSE -Copyright 2006 by Brian Cassidy +Copyright 2007 by Brian Cassidy This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.