]> git.vpit.fr Git - perl/modules/rgit.git/commitdiff
This is 0.05 v0.05
authorVincent Pit <vince@profvince.com>
Tue, 21 Oct 2008 21:12:27 +0000 (23:12 +0200)
committerVincent Pit <vince@profvince.com>
Tue, 21 Oct 2008 21:12:27 +0000 (23:12 +0200)
12 files changed:
Changes
META.yml
README
bin/rgit
lib/App/Rgit.pm
lib/App/Rgit/Command.pm
lib/App/Rgit/Command/Each.pm
lib/App/Rgit/Command/Once.pm
lib/App/Rgit/Config.pm
lib/App/Rgit/Config/Default.pm
lib/App/Rgit/Repository.pm
lib/App/Rgit/Utils.pm

diff --git a/Changes b/Changes
index f5397e81a5d33f2bf8b1cff0a391e040a264a174..f151cd5912347a1c6ca273990f091855e090f2c7 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,13 @@
 Revision history for rgit
 
+0.05    2008-10-21 21:15 UTC
+        + Add : When a command returned non-zero, you are now ask if you want to
+                fork a shell inside the repository.
+        + Add : The -D command-line switch makes rgit output diagnostics. The
+                default is quieter than before.
+        + Chg : Perl 5.8 is required.
+        + Upd : META.yml spec updated to 1.4.
+
 0.04    2008-10-07 22:05 UTC
         + Add : Command-line switches -V, -I, -K. List::Util isn't required
                 anymore.
index cbb3fe07add7344eda37d97b6beb3b41a65e1cd6..c90a50e6b4499e9f893926cba7743a5b1cb095d3 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -1,24 +1,29 @@
 --- #YAML:1.0
-name:                rgit
-version:             0.04
-abstract:            Recursively execute a command on all the git repositories in a directory tree.
-license:             perl
-author:              
+name:               rgit
+version:            0.05
+abstract:           Recursively execute a command on all the git repositories in a directory tree.
+author:
     - Vincent Pit <perl@profvince.com>
-generated_by:        ExtUtils::MakeMaker version 6.42
-distribution_type:   module
-requires:     
-    Carp:                          0
-    Config:                        0
-    Cwd:                           0
-    Exporter:                      0
-    File::Find:                    0
-    File::Spec::Functions:         0
-    Object::Tiny:                  0
-    POSIX:                         0
+license:            perl
+distribution_type:  module
+configure_requires:
+    ExtUtils::MakeMaker:  0
+requires:
+    Carp:                 0
+    Cwd:                  0
+    Exporter:             0
+    File::Find:           0
+    File::Spec::Functions:  0
+    Object::Tiny:         0
+    POSIX:                0
+no_index:
+    directory:
+        - t
+        - inc
+generated_by:       ExtUtils::MakeMaker version 6.46
 meta-spec:
-    url:     http://module-build.sourceforge.net/META-spec-v1.3.html
-    version: 1.3
+    url:      http://module-build.sourceforge.net/META-spec-v1.4.html
+    version:  1.4
 build_requires:
     Cwd:                           0
     ExtUtils::MakeMaker:           0
diff --git a/README b/README
index 369d18096bb0d54cf8180aecc584d3de5bfe0d2f..bccfd0b92c7e9e6f82abff64890f0fd72c2c27d6 100644 (file)
--- a/README
+++ b/README
@@ -3,10 +3,10 @@ NAME
     directory tree.
 
 VERSION
-    Version 0.04
+    Version 0.05
 
 SYNOPSIS
-        rgit [-K|-V|-I] [GIT_OPTIONS] COMMAND [COMMAND_ARGS]
+        rgit [-K|-I|-D|-V] [GIT_OPTIONS] COMMAND [COMMAND_ARGS]
 
 DESCRIPTION
     This utility recursively searches in the current directory (or in the
@@ -60,6 +60,10 @@ COMMAND LINE SWITCHES
         Term::ReadKey to be installed. This lets you choose interactively
         what to do when one of the commands returns a non-zero status.
 
+    *   "-D"
+
+        Outputs diagnostics.
+
     *   "-V"
 
         Outputs the version.
@@ -79,7 +83,7 @@ EXAMPLES
         GIT_DIR="/foo/bar" rgit remote add host git://host/qux/^b
 
 DEPENDENCIES
-    The core modules Carp, "Config", Cwd, Exporter, File::Find,
+    The core modules Carp, Config, Cwd, Exporter, File::Find,
     File::Spec::Functions and POSIX.
 
     Object::Tiny.
index 83bd219a1c0a35558b8fd6a926d0fcbaa6dcdbf1..1f0b2f0a6d9ac76f6c81096ce66ac6e903098c61 100755 (executable)
--- a/bin/rgit
+++ b/bin/rgit
@@ -13,7 +13,7 @@ use App::Rgit;
 
 our $VERSION;
 BEGIN {
- $VERSION = '0.04';
+ $VERSION = '0.05';
 }
 
 my %opts;
@@ -134,7 +134,7 @@ rgit - Recursively execute a command on all the git repositories in a directory
 
 =head1 VERSION
 
-Version 0.04
+Version 0.05
 
 =head1 SYNOPSIS
 
index e4436039f20b16c02d0972da1da542358032c976..975284ff23bc48beb1667b80def20db3e5e941b8 100644 (file)
@@ -15,11 +15,11 @@ App::Rgit - Backend that supports the rgit utility.
 
 =head1 VERSION
 
-Version 0.04
+Version 0.05
 
 =cut
 
-our $VERSION = '0.04';
+our $VERSION = '0.05';
 
 =head1 DESCRIPTION
 
index 6361d083cc0e56fd16c86bd3a9be6a4e82e543f2..d92eba46d59e7df3b0edf4cff28283fcf8ae64f6 100644 (file)
@@ -15,11 +15,11 @@ App::Rgit::Command - Base class for App::Rgit commands.
 
 =head1 VERSION
 
-Version 0.04
+Version 0.05
 
 =cut
 
-our $VERSION = '0.04';
+our $VERSION = '0.05';
 
 =head1 DESCRIPTION
 
index 3d2bcf80bb612bc4c6be069e32a7ed9df8be94a3..1e3870814c1b941a57d93b522becf0215ac0cbfe 100644 (file)
@@ -13,11 +13,11 @@ App::Rgit::Command::Each - Class for commands to execute for each repository.
 
 =head1 VERSION
 
-Version 0.04
+Version 0.05
 
 =cut
 
-our $VERSION = '0.04';
+our $VERSION = '0.05';
 
 =head1 DESCRIPTION
 
index f6d9bdee55df5ab42d1571e9eeaec90f4c84ce6e..e3d6cbc0aa5926da50947e495bd09709c58c6c74 100644 (file)
@@ -11,11 +11,11 @@ App::Rgit::Command::Once - Class for commands to execute only once.
 
 =head1 VERSION
 
-Version 0.04
+Version 0.05
 
 =cut
 
-our $VERSION = '0.04';
+our $VERSION = '0.05';
 
 =head1 DESCRIPTION
 
index 0316634cee78daa9801460adb40f6b60f319d6c7..90afe3b35cf58b9147ef135710de14eaaca1a814 100644 (file)
@@ -18,11 +18,11 @@ App::Rgit::Config - Base class for App::Rgit configurations.
 
 =head1 VERSION
 
-Version 0.04
+Version 0.05
 
 =cut
 
-our $VERSION = '0.04';
+our $VERSION = '0.05';
 
 =head1 DESCRIPTION
 
index e34767b96ba7889db056a61d1f505e41f1a3a8e6..1f8a5805d46893a894d7e279213b4d956bfba881 100644 (file)
@@ -15,11 +15,11 @@ App::Rgit::Config::Default - Default App::Rgit configuration class.
 
 =head1 VERSION
 
-Version 0.04
+Version 0.05
 
 =cut
 
-our $VERSION = '0.04';
+our $VERSION = '0.05';
 
 =head1 DESCRIPTION
 
index 19aca00f2a2393f4edd336ac49211a71d89df66f..9b3973487152be447ae9609a95531719b930d580 100644 (file)
@@ -17,11 +17,11 @@ App::Rgit::Repository - Class representing a Git repository.
 
 =head1 VERSION
 
-Version 0.04
+Version 0.05
 
 =cut
 
-our $VERSION = '0.04';
+our $VERSION = '0.05';
 
 =head1 DESCRIPTION
 
index cbcffd9108414a75a1f217fb7b44092c7b487b98..74be11567395f7688a2fd136484182993ee9335c 100644 (file)
@@ -11,11 +11,11 @@ App::Rgit::Utils - Miscellanous utilities for App::Rgit classes.
 
 =head1 VERSION
 
-Version 0.04
+Version 0.05
 
 =cut
 
-our $VERSION = '0.04';
+our $VERSION = '0.05';
 
 =head1 DESCRIPTION