From: Vincent Pit Date: Sun, 5 Oct 2008 22:39:59 +0000 (+0200) Subject: This is 0.02 X-Git-Tag: v0.02^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Frgit.git;a=commitdiff_plain;h=4c6f2bc56bc50a662b2c2625bcc012d4757f9abf This is 0.02 --- diff --git a/Changes b/Changes index 21cd6c6..ebda156 100644 --- 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. diff --git a/META.yml b/META.yml index e7eabb3..4363d63 100644 --- 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 0404135..2403748 100644 --- 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] diff --git a/bin/rgit b/bin/rgit index 6b45da5..61d3016 100755 --- 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 diff --git a/lib/App/Rgit.pm b/lib/App/Rgit.pm index 3d244a1..1d1ee0f 100644 --- a/lib/App/Rgit.pm +++ b/lib/App/Rgit.pm @@ -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 diff --git a/lib/App/Rgit/Command.pm b/lib/App/Rgit/Command.pm index 2030414..51ac158 100644 --- a/lib/App/Rgit/Command.pm +++ b/lib/App/Rgit/Command.pm @@ -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 diff --git a/lib/App/Rgit/Command/Each.pm b/lib/App/Rgit/Command/Each.pm index 2981904..155e974 100644 --- a/lib/App/Rgit/Command/Each.pm +++ b/lib/App/Rgit/Command/Each.pm @@ -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 diff --git a/lib/App/Rgit/Command/Once.pm b/lib/App/Rgit/Command/Once.pm index f602ef1..93d1bb9 100644 --- a/lib/App/Rgit/Command/Once.pm +++ b/lib/App/Rgit/Command/Once.pm @@ -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 diff --git a/lib/App/Rgit/Config.pm b/lib/App/Rgit/Config.pm index 212fa33..846006e 100644 --- a/lib/App/Rgit/Config.pm +++ b/lib/App/Rgit/Config.pm @@ -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 diff --git a/lib/App/Rgit/Config/Default.pm b/lib/App/Rgit/Config/Default.pm index 5917d79..98b085f 100644 --- a/lib/App/Rgit/Config/Default.pm +++ b/lib/App/Rgit/Config/Default.pm @@ -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 diff --git a/lib/App/Rgit/Repository.pm b/lib/App/Rgit/Repository.pm index 93efb4c..5ef1553 100644 --- a/lib/App/Rgit/Repository.pm +++ b/lib/App/Rgit/Repository.pm @@ -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 diff --git a/lib/App/Rgit/Utils.pm b/lib/App/Rgit/Utils.pm index 646a81e..89adfe2 100644 --- a/lib/App/Rgit/Utils.pm +++ b/lib/App/Rgit/Utils.pm @@ -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