[carton] 21/472: regen

Lucas Kanashiro kanashiro-guest at moszumanska.debian.org
Fri Jul 24 00:38:27 UTC 2015


This is an automated email from the git hooks/post-receive script.

kanashiro-guest pushed a commit to branch master
in repository carton.

commit 5ea8f794af722a47d7fdfa7900f0f7199086059a
Author: Tatsuhiko Miyagawa <miyagawa at bulknews.net>
Date:   Sat Jun 25 20:48:04 2011 -0700

    regen
---
 Makefile.PL |  4 +++-
 README      | 12 ++++++------
 2 files changed, 9 insertions(+), 7 deletions(-)

diff --git a/Makefile.PL b/Makefile.PL
index edf1a12..9d3e281 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -1,6 +1,6 @@
 use inc::Module::Install;
 name 'carton';
-version_from 'lib/App/Carton.pm';
+version_from 'lib/Carton.pm';
 all_from 'bin/carton';
 readme_from('bin/carton');
 
@@ -10,6 +10,8 @@ requires 'App::cpanminus', 1.5000;
 requires 'Term::ANSIColor';
 requires 'Module::Metadata', 1.000003;
 
+install_script 'bin/carton';
+
 build_requires 'Test::More', 0.88;
 test_requires 'Test::Requires';
 auto_set_repository();
diff --git a/README b/README
index ec0436e..87f1ac5 100644
--- a/README
+++ b/README
@@ -28,13 +28,13 @@ DESCRIPTION
 
 TUTORIAL
   Initializing the environment
-    carton will use ".carton" folder for local configuration and "extlib" to
+    carton will use ".carton" folder for local configuration and "local" to
     install modules. You're recommended to exclude these directories from
     the version control system.
 
       > carton check
       > echo .carton >> .gitignore
-      > echo extlib >> .gitignore
+      > echo local/ >> .gitignore
       > git add carton.json
       > git commit -m "Start using carton"
 
@@ -53,7 +53,7 @@ TUTORIAL
 
       > carton install
 
-    The modules are installed into your "extlib" directory, and the
+    The modules are installed into your "local" directory, and the
     dependencies tree and version information are analyzed and saved into
     "carton.json" in your directory.
 
@@ -67,13 +67,13 @@ TUTORIAL
 
   Deploying your application
     Once you've done installing all the dependencies, you can push your
-    application directory to a remote machine (excluding "extlib" and
+    application directory to a remote machine (excluding "local" and
     ".carton") and run the following command:
 
       > carton install
 
     This will look at the "carton.json" and install the exact same versions
-    of the dependencies into "extlib", and now your application is ready to
+    of the dependencies into "local", and now your application is ready to
     run.
 
   Bundling modules
@@ -83,7 +83,7 @@ TUTORIAL
 
       > carton bundle
 
-    will bundle these tarballs into "extlib/cache" directory, and
+    will bundle these tarballs into "local/cache" directory, and
 
       > carton install --cached
 

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/carton.git



More information about the Pkg-perl-cvs-commits mailing list