switch to Module::Install. fix up changes file. fix up some invalid pod.
Brian Cassidy [Thu, 26 Apr 2007 17:51:22 +0000 (17:51 +0000)]
Changes
MANIFEST.SKIP [new file with mode: 0644]
Makefile.PL
lib/Catalyst/Manual.pm
lib/Catalyst/Manual/WritingPlugins.pod

diff --git a/Changes b/Changes
index d2f51ac..8709c25 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,11 +1,17 @@
 Revision history for Catalyst-Manual
 
-???
-          - Removal of WritingPlugins. ExtendingCatalyst is now the main resource
-            for extensions to the framework and the application.
+5.700702  26 April 2007
+    - Switch to Module::Install
+
+5.700701  19 April 2007
+    - Removal of WritingPlugins. ExtendingCatalyst is now the main resource
+      for extensions to the framework and the application.
+
+5.700501  10 November 2006
+    - Matches Catalyst-Runtime 5.7005
 
 5.700401  7 November 2006
-          First release to CPAN; matches Catalyst-Runtime 5.7004.
+    - First release to CPAN; matches Catalyst-Runtime 5.7004.
 
 5.700301  20 October 2006
-          Splitting manual into its own distro
+    - Splitting manual into its own distro
diff --git a/MANIFEST.SKIP b/MANIFEST.SKIP
new file mode 100644 (file)
index 0000000..f21a21f
--- /dev/null
@@ -0,0 +1,29 @@
+# Avoid version control files.
+\bRCS\b
+\bCVS\b
+,v$
+\B\.svn\b
+
+# Avoid Makemaker generated and utility files.
+\bMakefile$
+\bblib
+\bMakeMaker-\d
+\bpm_to_blib$
+\bblibdirs$
+^MANIFEST\.SKIP$
+
+# Avoid Module::Build generated and utility files.
+\bBuild$
+\b_build
+
+# Avoid temp and backup files.
+~$
+\.tmp$
+\.old$
+\.bak$
+\#$
+\b\.#
+\.DS_Store$
+
+# No tarballs!
+\.gz$
index a0ba640..4f399fd 100644 (file)
@@ -1,17 +1,11 @@
-use strict;
-use warnings;
-use ExtUtils::MakeMaker;
+use inc::Module::Install 0.65;
 
-WriteMakefile(
-             NAME                => 'Catalyst::Manual',
-             AUTHOR              => 'Jonathan Rockway <jrockway@cpan.org>',
-             VERSION_FROM        => 'lib/Catalyst/Manual.pm',
-             ABSTRACT_FROM       => 'lib/Catalyst/Manual.pm',
-             PL_FILES            => {},
-             PREREQ_PM => {
-                           'Test::More' => 0,
-                          },
-             dist                => { COMPRESS => 'gzip -9f', 
-                                      SUFFIX   => 'gz', },
-             clean               => { FILES => 'Catalyst-Manual-*' },
-            );
+name 'Catalyst-Manual';
+all_from 'lib/Catalyst/Manual.pm';
+author 'Jonathan Rockway <jrockway@cpan.org>';
+license 'perl';
+
+requires 'Test::More';
+
+auto_install;
+WriteAll;
index 2de08ba..75b900a 100644 (file)
@@ -21,6 +21,6 @@ Tutorial.
 
 =cut
 
-our $VERSION = '5.700701';
+our $VERSION = '5.700702';
 
 1;
index 9d94613..ecc7d9a 100644 (file)
@@ -1,12 +1,11 @@
-=head NAME
+=head1 NAME
 
 Catalyst::Manual::WritingPlugins - (DEPRECATED, see L<Catalyst::Manual::ExtendingCatalyst>)
 
-=head DESCRIPTION
+=head1 DESCRIPTION
 
 This document is now deprecated. Please refer to L<Catalyst::Manual::ExtendingCatalyst>
 for information on how to extend the framework and your applications.
 
 =cut
 
-