[Catalyst-commits] r9305 - in trunk/Catalyst-Model-File: .
lib/Catalyst/Model
t0m at dev.catalyst.perl.org
t0m at dev.catalyst.perl.org
Sat Feb 14 23:00:33 GMT 2009
Author: t0m
Date: 2009-02-14 23:00:33 +0000 (Sat, 14 Feb 2009)
New Revision: 9305
Modified:
trunk/Catalyst-Model-File/Changes
trunk/Catalyst-Model-File/lib/Catalyst/Model/File.pm
Log:
s/NEXT/next::method/ without getting distracted this time.
Modified: trunk/Catalyst-Model-File/Changes
===================================================================
--- trunk/Catalyst-Model-File/Changes 2009-02-14 22:56:57 UTC (rev 9304)
+++ trunk/Catalyst-Model-File/Changes 2009-02-14 23:00:33 UTC (rev 9305)
@@ -1,5 +1,6 @@
0.08 -
+ Use next::method for method re-dispatch instead of NEXT
Fix Win32 test failures by forcing stringifies to Unix output format
0.07 - 2008/12/17
Modified: trunk/Catalyst-Model-File/lib/Catalyst/Model/File.pm
===================================================================
--- trunk/Catalyst-Model-File/lib/Catalyst/Model/File.pm 2009-02-14 22:56:57 UTC (rev 9304)
+++ trunk/Catalyst-Model-File/lib/Catalyst/Model/File.pm 2009-02-14 23:00:33 UTC (rev 9305)
@@ -11,7 +11,7 @@
use Path::Class ();
use IO::File;
-our $VERSION = 0.07;
+our $VERSION = 0.08;
=head1 NAME
@@ -41,7 +41,7 @@
=cut
sub new {
- my $self = shift->NEXT::new(@_);
+ my $self = shift->next::method(@_);
croak "->config->{root_dir} must be defined for this model"
unless $self->{root_dir};
More information about the Catalyst-commits
mailing list