switch to Module::Install
Brian Cassidy [Fri, 27 Apr 2007 02:14:40 +0000 (02:14 +0000)]
Changes
MANIFEST [deleted file]
Makefile.PL
lib/Catalyst/Plugin/Authentication/Store/DBIx/Class.pm

diff --git a/Changes b/Changes
index 919256b..94e17ce 100644 (file)
--- a/Changes
+++ b/Changes
@@ -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
         
diff --git a/MANIFEST b/MANIFEST
deleted file mode 100644 (file)
index b993c10..0000000
--- a/MANIFEST
+++ /dev/null
@@ -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
index 9131e3b..c157f1b 100644 (file)
@@ -1,16 +1,12 @@
-use strict;
-use warnings;
-use ExtUtils::MakeMaker;
+use inc::Module::Install 0.65;
+
+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;
 
-WriteMakefile(
-    NAME                => 'Catalyst::Plugin::Authentication::Store::DBIx::Class',
-    AUTHOR              => 'Jay Kuri <jayk@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-*' },
-);
index e50922a..ead6389 100644 (file)
@@ -4,7 +4,7 @@ use strict;
 use warnings;
 use base qw/Class::Accessor::Fast/;
 
-our $VERSION= "0.02";
+our $VERSION= "0.03";
 
 BEGIN {
     __PACKAGE__->mk_accessors(qw/config/);