]> git.vpit.fr Git - perl/modules/rgit.git/commitdiff
This is 0.02 v0.02
authorVincent Pit <vince@profvince.com>
Sun, 5 Oct 2008 22:39:59 +0000 (00:39 +0200)
committerVincent Pit <vince@profvince.com>
Sun, 5 Oct 2008 22:39:59 +0000 (00:39 +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 21cd6c6dc8f349efdfc071d937fcf12f4ec12119..ebda156fdf59f399d83a0c9a1008e977b14c2395 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,4 +1,9 @@
 Revision history for rgit
 
+0.02    2008-10-05 22:40 UTC
+        + Fix : Missing $VERSION in App::Rgit::Config.
+        + Tst : Don't bundle fake repositories, but create them on the fly.
+        + Tst : Improve coverage up to 97%.
+
 0.01    2008-10-05 15:45 UTC
         First version, released on an unsuspecting world.
index e7eabb3180ab812875c5298e05e3069aa6bf1185..4363d638cb0b0ec73ff4646af3c761ae92a090fd 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:                rgit
-version:             0.01
+version:             0.02
 abstract:            Recursively execute a command on all the git repositories in a directory tree.
 license:             perl
 author:              
@@ -19,5 +19,8 @@ meta-spec:
     url:     http://module-build.sourceforge.net/META-spec-v1.3.html
     version: 1.3
 build_requires:
+    Cwd:                           0
     ExtUtils::MakeMaker:           0
+    File::Spec::Functions:         0
+    File::Temp:                    0
     Test::More:                    0
diff --git a/README b/README
index 04041356edb1ff9c9de9237943306a8dab2de1f6..2403748ae726f6022e3fbf4a20c581708ea219f4 100644 (file)
--- a/README
+++ b/README
@@ -3,7 +3,7 @@ NAME
     directory tree.
 
 VERSION
-    Version 0.01
+    Version 0.02
 
 SYNOPSIS
         rgit [GIT_OPTIONS] COMMAND [COMMAND_ARGS]
index 6b45da539e66840042e8aae6f0214b7dda8ea73b..61d3016ed30cb26f6591b9d2ea89131d37562a2b 100755 (executable)
--- a/bin/rgit
+++ b/bin/rgit
@@ -10,7 +10,7 @@ use List::Util qw/first/;
 
 use App::Rgit;
 
-our $VERSION = '0.01';
+our $VERSION = '0.02';
 
 my $cmd = first { !/^-/ } @ARGV;
 $cmd = ' ' unless defined $cmd;
@@ -45,7 +45,7 @@ rgit - Recursively execute a command on all the git repositories in a directory
 
 =head1 VERSION
 
-Version 0.01
+Version 0.02
 
 =head1 SYNOPSIS
 
index 3d244a1bff509f805f1efd91d30c7264c368080f..1d1ee0f1b697089470605ab2a1a3ffb1e21a9612 100644 (file)
@@ -15,11 +15,11 @@ App::Rgit - Backend that supports the rgit utility.
 
 =head1 VERSION
 
-Version 0.01
+Version 0.02
 
 =cut
 
-our $VERSION = '0.01';
+our $VERSION = '0.02';
 
 =head1 DESCRIPTION
 
index 203041439d6e175db61a16127720b32975e917a4..51ac158edcbdf159480b7edb7e56373c300f2362 100644 (file)
@@ -16,11 +16,11 @@ App::Rgit::Command - Base class for App::Rgit commands.
 
 =head1 VERSION
 
-Version 0.01
+Version 0.02
 
 =cut
 
-our $VERSION = '0.01';
+our $VERSION = '0.02';
 
 =head1 DESCRIPTION
 
index 2981904f8095b11963d54c258fec1b906bbbfa3f..155e9744ac37ffa1417b22537f3e294072c1f44c 100644 (file)
@@ -11,11 +11,11 @@ App::Rgit::Command::Each - Class for commands to execute for each repository.
 
 =head1 VERSION
 
-Version 0.01
+Version 0.02
 
 =cut
 
-our $VERSION = '0.01';
+our $VERSION = '0.02';
 
 =head1 DESCRIPTION
 
index f602ef154c76899aeaa664acf15880132803b220..93d1bb9dc76739e699fe599921c21f9105f363c2 100644 (file)
@@ -11,11 +11,11 @@ App::Rgit::Command::Once - Class for commands to execute only once.
 
 =head1 VERSION
 
-Version 0.01
+Version 0.02
 
 =cut
 
-our $VERSION = '0.01';
+our $VERSION = '0.02';
 
 =head1 DESCRIPTION
 
index 212fa334628f79f93c14db637a76ceaf67b73c76..846006ee97ddab1ddc7b00662527cba95b1507d1 100644 (file)
@@ -17,7 +17,11 @@ App::Rgit::Config - Base class for App::Rgit configurations.
 
 =head1 VERSION
 
-Version 0.01
+Version 0.02
+
+=cut
+
+our $VERSION = '0.02';
 
 =head1 DESCRIPTION
 
index 5917d790d7201f9f4d0ebb6620e421228e0c1c0b..98b085f741e462e029b46dcead7b0eb1e9399082 100644 (file)
@@ -15,11 +15,11 @@ App::Rgit::Config::Default - Default App::Rgit configuration class.
 
 =head1 VERSION
 
-Version 0.01
+Version 0.02
 
 =cut
 
-our $VERSION = '0.01';
+our $VERSION = '0.02';
 
 =head1 DESCRIPTION
 
index 93efb4cfa71eac2fa896ac83595cfb8c4a89368d..5ef1553032909949e1baee4867c998d47fdcf0c3 100644 (file)
@@ -16,11 +16,11 @@ App::Rgit::Repository - Class representing a Git repository.
 
 =head1 VERSION
 
-Version 0.01
+Version 0.02
 
 =cut
 
-our $VERSION = '0.01';
+our $VERSION = '0.02';
 
 =head1 DESCRIPTION
 
index 646a81e56798d5fd3031690b1b6f9cb9abb79086..89adfe2cca6115484793188c862f9b6b14212bb9 100644 (file)
@@ -11,11 +11,11 @@ App::Rgit::Utils - Miscellanous utilities for App::Rgit classes.
 
 =head1 VERSION
 
-Version 0.01
+Version 0.02
 
 =cut
 
-our $VERSION = '0.01';
+our $VERSION = '0.02';
 
 =head1 DESCRIPTION