[Catalyst-commits] r6326 - in
trunk/Catalyst-Plugin-Authentication-Store-DBIx-Class: .
lib/Catalyst/Plugin/Authentication/Store/DBIx
bricas at dev.catalyst.perl.org
bricas at dev.catalyst.perl.org
Fri Apr 27 03:14:41 GMT 2007
Author: bricas
Date: 2007-04-27 03:14:40 +0100 (Fri, 27 Apr 2007)
New Revision: 6326
Removed:
trunk/Catalyst-Plugin-Authentication-Store-DBIx-Class/MANIFEST
Modified:
trunk/Catalyst-Plugin-Authentication-Store-DBIx-Class/Changes
trunk/Catalyst-Plugin-Authentication-Store-DBIx-Class/Makefile.PL
trunk/Catalyst-Plugin-Authentication-Store-DBIx-Class/lib/Catalyst/Plugin/Authentication/Store/DBIx/Class.pm
Log:
switch to Module::Install
Modified: trunk/Catalyst-Plugin-Authentication-Store-DBIx-Class/Changes
===================================================================
--- trunk/Catalyst-Plugin-Authentication-Store-DBIx-Class/Changes 2007-04-27 02:05:26 UTC (rev 6325)
+++ trunk/Catalyst-Plugin-Authentication-Store-DBIx-Class/Changes 2007-04-27 02:14:40 UTC (rev 6326)
@@ -1,5 +1,8 @@
Revision history for Catalyst-Plugin-Authentication-Store-DBIx-Class
+0.03 XXX
+ Switch to Module::Install
+
0.02 2006-12-16 2pm CST
Rewritten to use proper accessors and clean up to match updated C::P::Authentication class naming
Deleted: trunk/Catalyst-Plugin-Authentication-Store-DBIx-Class/MANIFEST
===================================================================
--- trunk/Catalyst-Plugin-Authentication-Store-DBIx-Class/MANIFEST 2007-04-27 02:05:26 UTC (rev 6325)
+++ trunk/Catalyst-Plugin-Authentication-Store-DBIx-Class/MANIFEST 2007-04-27 02:14:40 UTC (rev 6326)
@@ -1,10 +0,0 @@
-Changes
-lib/Catalyst/Plugin/Authentication/Store/DBIx/Class.pm
-lib/Catalyst/Plugin/Authentication/Store/DBIx/Class/User.pm
-Makefile.PL
-MANIFEST
-README
-t/00-load.t
-t/boilerplate.t
-t/pod-coverage.t
-t/pod.t
Modified: trunk/Catalyst-Plugin-Authentication-Store-DBIx-Class/Makefile.PL
===================================================================
--- trunk/Catalyst-Plugin-Authentication-Store-DBIx-Class/Makefile.PL 2007-04-27 02:05:26 UTC (rev 6325)
+++ trunk/Catalyst-Plugin-Authentication-Store-DBIx-Class/Makefile.PL 2007-04-27 02:14:40 UTC (rev 6326)
@@ -1,16 +1,12 @@
-use strict;
-use warnings;
-use ExtUtils::MakeMaker;
+use inc::Module::Install 0.65;
-WriteMakefile(
- NAME => 'Catalyst::Plugin::Authentication::Store::DBIx::Class',
- AUTHOR => 'Jay Kuri <jayk at cpan.org>',
- VERSION_FROM => 'lib/Catalyst/Plugin/Authentication/Store/DBIx/Class.pm',
- ABSTRACT_FROM => 'lib/Catalyst/Plugin/Authentication/Store/DBIx/Class.pm',
- PL_FILES => {},
- PREREQ_PM => {
- 'Test::More' => 0,
- },
- dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
- clean => { FILES => 'Catalyst-Plugin-Authentication-Store-DBIx-Class-*' },
-);
+name 'Catalyst-Plugin-Authentication-Store-DBIx-Class';
+all_from 'lib/Catalyst/Plugin/Authentication/Store/DBIx/Class.pm';
+
+requires 'Catalyst::Runtime';
+requires 'Catalyst::Plugin::Authentication';
+requires 'Test::More';
+
+auto_install;
+WriteAll;
+
Modified: trunk/Catalyst-Plugin-Authentication-Store-DBIx-Class/lib/Catalyst/Plugin/Authentication/Store/DBIx/Class.pm
===================================================================
--- trunk/Catalyst-Plugin-Authentication-Store-DBIx-Class/lib/Catalyst/Plugin/Authentication/Store/DBIx/Class.pm 2007-04-27 02:05:26 UTC (rev 6325)
+++ trunk/Catalyst-Plugin-Authentication-Store-DBIx-Class/lib/Catalyst/Plugin/Authentication/Store/DBIx/Class.pm 2007-04-27 02:14:40 UTC (rev 6326)
@@ -4,7 +4,7 @@
use warnings;
use base qw/Class::Accessor::Fast/;
-our $VERSION= "0.02";
+our $VERSION= "0.03";
BEGIN {
__PACKAGE__->mk_accessors(qw/config/);
More information about the Catalyst-commits
mailing list