Fix for Windows regarding changes from 0.29 v0.30
Brian Cassidy [Sat, 21 Aug 2010 00:58:30 +0000 (00:58 +0000)]
Changes
lib/Catalyst/Plugin/ConfigLoader.pm
t/24-mock-shortappname.t

diff --git a/Changes b/Changes
index 9fcf373..0d60371 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,8 @@
 Revision history for Perl extension Catalyst::Plugin::ConfigLoader.
 
+0.30  Fri Aug 20 2010
+    - Fix for Windows regarding changes from 0.29
+
 0.29  Fri Aug 20 2010
     - Fix issue with 2 character app names that are kept in versioned
       directories (e.g. app called QX in QX-2.1.5/)
index 3c4f0dc..aad30f3 100644 (file)
@@ -8,7 +8,7 @@ use MRO::Compat;
 use Data::Visitor::Callback;
 use Catalyst::Utils ();
 
-our $VERSION = '0.29';
+our $VERSION = '0.30';
 
 =head1 NAME
 
@@ -183,7 +183,7 @@ sub get_config_path {
         || $c->config->{ 'Plugin::ConfigLoader' }->{ file }
         || $c->path_to( $prefix );
 
-    my ( $extension ) = ( $path =~ m{\.([^/\.]{1,4})$} );
+    my ( $extension ) = ( $path =~ m{\.([^\/\\.]{1,4})$} );
 
     if ( -d $path ) {
         $path =~ s{[\/\\]$}{};
index 87fa57a..f7abc17 100644 (file)
@@ -16,7 +16,7 @@ use Test::More;
 
 my $app = bless {}, 'QX';
 my ($path, $extension) = $app->get_config_path;
-is $path, '/home/foo/QX-0.9.5/qx';
+is $path, Path::Class::dir( '/home/foo/QX-0.9.5/qx' )->stringify;
 is $extension, undef;
 
 done_testing;