X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FConfig-Any.git;a=blobdiff_plain;f=lib%2FConfig%2FAny.pm;h=1b056e19103a9249872db63018e2cad3e3fb98c9;hp=68a7fbcb369dcc86ee503873f4ea29372615067a;hb=11501cf7c7fd46e8723c2de165a00e2f8deefc72;hpb=f103b82bc783be531637c754c37783aa6c144a45 diff --git a/lib/Config/Any.pm b/lib/Config/Any.pm index 68a7fbc..1b056e1 100644 --- a/lib/Config/Any.pm +++ b/lib/Config/Any.pm @@ -6,16 +6,12 @@ use warnings; use Carp; use Module::Pluggable::Object (); -our $VERSION = '0.10'; +our $VERSION = '0.13'; =head1 NAME Config::Any - Load configuration from different file formats, transparently -=head1 VERSION - -This document describes Config::Any version 0.10 - =head1 SYNOPSIS use Config::Any; @@ -183,7 +179,7 @@ sub _load { = eval { $loader->load( $filename, $loader_args{ $loader } ); }; # fatal error if we used extension matching - croak "Error parsing file: $filename" if $@ and $use_ext_lut; + croak "Error parsing $filename: $@" if $@ and $use_ext_lut; next if $@ or !@configs; # post-process config with a filter callback