Exclude bootstrap related scripts from dist, bump dev version. 0.002001_02
Dan Brook [Sat, 31 Jul 2010 09:03:53 +0000 (10:03 +0100)]
* Updated docs accordingly.

Changes
MANIFEST.SKIP
README
lib/Gitalist.pm

diff --git a/Changes b/Changes
index 47dfc15..9895eef 100644 (file)
--- a/Changes
+++ b/Changes
@@ -9,6 +9,7 @@ This file documents the revision history for Perl extension Gitalist.
     - Update bootstrapping for local::lib 1.006000.
     - Fixed author_* barewords in Makefile.PL.
     - Handle merges in the diff view.
+    - Add script/{bootstrap.pl,env} to MANIFEST.SKIP.
 
 0.001008 2010-06-03
    - Add a requires_external_bin for the git command so we won't try running
index 65a8ad3..2bf665d 100644 (file)
@@ -10,4 +10,6 @@ MANIFEST\.skip$
 MANIFEST\.bak$
 Makefile\.old$
 \.shipit$
+script/bootstrap.pl
+script/env
 
diff --git a/README b/README
index 95fec81..777eb21 100644 (file)
--- a/README
+++ b/README
@@ -53,18 +53,21 @@ BOOTSTRAPPING
     path with CPAN they are installed under the Gitalist directory.
 
     To do this clone Gitalist from the Shadowcat repository mentioned above
-    or grab a download from CPAN or broquaint's github repository:
+    or grab a snapshot from broquaint's github repository:
 
         http://github.com/broquaint/Gitalist/downloads
 
     With the source acquired and unpacked run the following from within the
     Gitalist directory:
 
-        perl script/bootstrap
+        perl script/bootstrap.pl
 
     This will install the necessary modules for the build process which in
     turn installs the prerequisites locally.
 
+    *NB* The relevant bootstrap scripts aren't available in the CPAN dist as
+    the bootstrap scripts should not be installed.
+
 INITIAL CONFIGURATION
     Gitalist is configured using Catalyst::Plugin::Configloader. The
     supplied sample configuration is in Config::General format, however it
index 36f7098..fb70278 100644 (file)
@@ -14,7 +14,7 @@ use Catalyst qw/
                 SubRequest
 /;
 
-our $VERSION = '0.002001_01';
+our $VERSION = '0.002001_02';
 $VERSION = eval $VERSION;
 
 __PACKAGE__->config(
@@ -121,18 +121,21 @@ L<local::lib>. So instead of installing the prerequisites to the
 system path with CPAN they are installed under the Gitalist directory.
 
 To do this clone Gitalist from the Shadowcat repository mentioned
-above or grab a download from CPAN or broquaint's github repository:
+above or grab a snapshot from broquaint's github repository:
 
     http://github.com/broquaint/Gitalist/downloads
 
 With the source acquired and unpacked run the following from within the
 Gitalist directory:
 
-    perl script/bootstrap
+    perl script/bootstrap.pl
 
 This will install the necessary modules for the build process which in
 turn installs the prerequisites locally.
 
+I<NB> The relevant bootstrap scripts aren't available in the CPAN dist
+as the bootstrap scripts should not be installed.
+
 =head1 INITIAL CONFIGURATION
 
 Gitalist is configured using L<Catalyst::Plugin::Configloader>. The supplied sample