no need to coerce here - will happen automatically later on
Karen Etheridge [Sun, 3 Feb 2013 01:37:43 +0000 (17:37 -0800)]
lib/MooseX/ConfigFromFile.pm

index b08dde0..f1b5f21 100644 (file)
@@ -27,7 +27,7 @@ sub new_with_config {
     }
     else {
         my $cfmeta = $class->meta->find_attribute_by_name('configfile');
-        $configfile = try { to_File($class->configfile) };
+        $configfile = try { $class->configfile };
         $configfile ||= $cfmeta->default if $cfmeta->has_default;
         if (ref $configfile eq 'CODE') {
             $configfile = &$configfile($class);