]> git.vpit.fr Git - perl/modules/rgit.git/blobdiff - lib/App/Rgit.pm
Update VPIT::TestHelpers to 15e8aee3
[perl/modules/rgit.git] / lib / App / Rgit.pm
index 4231436c9329e7ea38dbefda18c1c5252698808f..ef56f6c0d8f62f8a054a250d37d9807713b1d791 100644 (file)
@@ -12,11 +12,11 @@ App::Rgit - Backend that supports the rgit utility.
 
 =head1 VERSION
 
-Version 0.07
+Version 0.08
 
 =cut
 
-our $VERSION = '0.07';
+our $VERSION = '0.08';
 
 =head1 DESCRIPTION
 
@@ -26,7 +26,14 @@ This is an internal class to L<rgit>.
 
 =head1 METHODS
 
-=head2 C<< new root => $root, git => $git, cmd => $cmd, args => \@args >>
+=head2 C<new>
+
+    my $ar = App::Rgit->new(
+     root => $root,
+     git  => $git,
+     cmd  => $cmd,
+     args => \@args,
+    );
 
 Creates a new L<App::Rgit> object that's bound to execute the command C<$cmd> on all the C<git> repositories inside C<$root> with C<@args> as arguments and C<$git> as C<git> executable.
 
@@ -79,7 +86,7 @@ Read-only accessors.
 =cut
 
 BEGIN {
- eval "sub $_ { \$_[0]->{$_} }" for qw/config command/;
+ eval "sub $_ { \$_[0]->{$_} }" for qw<config command>;
 }
 
 =head1 SEE ALSO