[Catalyst-commits] r10100 - in
trunk/Catalyst-Plugin-Session-Store-Delegate: .
lib/Catalyst/Plugin/Session/Store
t/lib/SessionStoreTest/Model t/lib/SessionStoreTest2/Model
t0m at dev.catalyst.perl.org
t0m at dev.catalyst.perl.org
Tue May 12 18:32:23 GMT 2009
Author: t0m
Date: 2009-05-12 18:32:22 +0000 (Tue, 12 May 2009)
New Revision: 10100
Modified:
trunk/Catalyst-Plugin-Session-Store-Delegate/
trunk/Catalyst-Plugin-Session-Store-Delegate/Changes
trunk/Catalyst-Plugin-Session-Store-Delegate/Makefile.PL
trunk/Catalyst-Plugin-Session-Store-Delegate/lib/Catalyst/Plugin/Session/Store/Delegate.pm
trunk/Catalyst-Plugin-Session-Store-Delegate/t/lib/SessionStoreTest/Model/Session.pm
trunk/Catalyst-Plugin-Session-Store-Delegate/t/lib/SessionStoreTest2/Model/Session.pm
Log:
Checking in changes prior to tagging of version 0.04. Changelog diff is:
Index: Changes
===================================================================
--- Changes (revision 10057)
+++ Changes (working copy)
@@ -1,3 +1,7 @@
+0.04
+ - Switch to Module::Install.
+ - Avoid test suite warnings with Catalyst 5.80
+
0.03
- Fix tests to work with tightened up $c->model in 5.71
- Switch from NEXT to MRO::Compat for method redispatch
Property changes on: trunk/Catalyst-Plugin-Session-Store-Delegate
___________________________________________________________________
Name: svn:ignore
+ MANIFEST.bak
META.yml
pm_to_blib
MANIFEST
Makefile
inc
blib
Modified: trunk/Catalyst-Plugin-Session-Store-Delegate/Changes
===================================================================
--- trunk/Catalyst-Plugin-Session-Store-Delegate/Changes 2009-05-12 18:26:17 UTC (rev 10099)
+++ trunk/Catalyst-Plugin-Session-Store-Delegate/Changes 2009-05-12 18:32:22 UTC (rev 10100)
@@ -1,3 +1,7 @@
+0.04
+ - Switch to Module::Install.
+ - Avoid test suite warnings with Catalyst 5.80
+
0.03
- Fix tests to work with tightened up $c->model in 5.71
- Switch from NEXT to MRO::Compat for method redispatch
Modified: trunk/Catalyst-Plugin-Session-Store-Delegate/Makefile.PL
===================================================================
--- trunk/Catalyst-Plugin-Session-Store-Delegate/Makefile.PL 2009-05-12 18:26:17 UTC (rev 10099)
+++ trunk/Catalyst-Plugin-Session-Store-Delegate/Makefile.PL 2009-05-12 18:32:22 UTC (rev 10100)
@@ -1,23 +1,16 @@
-#!/usr/bin/perl
+#!/usr/bin/env perl
+use inc::Module::Install 0.87;
use strict;
use warnings;
-use ExtUtils::MakeMaker;
+all_from 'lib/Catalyst/Plugin/Session/Store/Delegate.pm';
+name 'Catalyst-Plugin-Session-Store-Delegate';
+requires 'Catalyst::Plugin::Session' => '0.12';
+requires 'Class::Accessor::Fast' => '0';
+test_requires 'Test::More' => '0';
+test_requires 'Test::use::ok' => '0';
+requires 'MRO::Compat' => '0';
-WriteMakefile(
- 'NAME' => 'Catalyst::Plugin::Session::Store::Delegate',
- 'VERSION_FROM' => 'lib/Catalyst/Plugin/Session/Store/Delegate.pm',
- 'PREREQ_PM' => {
- 'Catalyst::Plugin::Session' => '0.12',
- 'Class::Accessor::Fast' => '0',
- 'Test::More' => '0',
- 'Test::use::ok' => '0',
- 'MRO::Compat' => '0',
- },
- 'INSTALLDIRS' => 'site',
- 'EXE_FILES' => [],
- 'SIGN' => 1,
- 'PL_FILES' => {}
-);
+WriteAll;
Modified: trunk/Catalyst-Plugin-Session-Store-Delegate/lib/Catalyst/Plugin/Session/Store/Delegate.pm
===================================================================
--- trunk/Catalyst-Plugin-Session-Store-Delegate/lib/Catalyst/Plugin/Session/Store/Delegate.pm 2009-05-12 18:26:17 UTC (rev 10099)
+++ trunk/Catalyst-Plugin-Session-Store-Delegate/lib/Catalyst/Plugin/Session/Store/Delegate.pm 2009-05-12 18:32:22 UTC (rev 10100)
@@ -11,7 +11,7 @@
use MRO::Compat;
-our $VERSION = "0.03";
+our $VERSION = "0.04";
__PACKAGE__->mk_accessors(qw/_session_store_delegate/);
Modified: trunk/Catalyst-Plugin-Session-Store-Delegate/t/lib/SessionStoreTest/Model/Session.pm
===================================================================
--- trunk/Catalyst-Plugin-Session-Store-Delegate/t/lib/SessionStoreTest/Model/Session.pm 2009-05-12 18:26:17 UTC (rev 10099)
+++ trunk/Catalyst-Plugin-Session-Store-Delegate/t/lib/SessionStoreTest/Model/Session.pm 2009-05-12 18:32:22 UTC (rev 10100)
@@ -7,5 +7,7 @@
# t/basic.t implements a closure which gets the model but does nothing with it.
# Tests without a closure should be added.
+our $VERSION = 0.0001; # Otherwise we get warnings as our package looks empty.
+
1;
Modified: trunk/Catalyst-Plugin-Session-Store-Delegate/t/lib/SessionStoreTest2/Model/Session.pm
===================================================================
--- trunk/Catalyst-Plugin-Session-Store-Delegate/t/lib/SessionStoreTest2/Model/Session.pm 2009-05-12 18:26:17 UTC (rev 10099)
+++ trunk/Catalyst-Plugin-Session-Store-Delegate/t/lib/SessionStoreTest2/Model/Session.pm 2009-05-12 18:32:22 UTC (rev 10100)
@@ -3,5 +3,7 @@
use strict;
use warnings;
+our $VERSION = 0.0001; # Otherwise we get warnings as our package looks empty.
+
1;
More information about the Catalyst-commits
mailing list