File Coverage

File:blib/lib/App/Rgit/Command/Once.pm
Coverage:100.0%

linestmtbrancondsubpodtimecode
1package App::Rgit::Command::Once;
2
3
4
4
4
37
12
40
use strict;
4
4
4
4
38
11
41
use warnings;
5
6
4
4
4
38
12
50
use base qw/App::Rgit::Command/;
7
8 - 16
=head1 NAME

App::Rgit::Command::Once - Class for commands to execute only once.

=head1 VERSION

Version 0.06

=cut
17
18our $VERSION = '0.06';
19
20 - 34
=head1 DESCRIPTION

Class for commands to execute only once.

This is an internal class to L<rgit>.

=head1 METHODS

This class inherits from L<App::Rgit::Command>.

It implements :

=head2 C<run>

=cut
35
36sub run {
37
5
1
24
 my ($self, $conf) = @_;
38
5
5
45
37
 $conf->cwd_repo->run($conf, @{$self->args});
39}
40
41 - 67
=head1 SEE ALSO

L<rgit>.

=head1 AUTHOR

Vincent Pit, C<< <perl at profvince.com> >>, L<http://profvince.com>.

You can contact me by mail or on C<irc.perl.org> (vincent).

=head1 BUGS

Please report any bugs or feature requests to C<bug-rgit at rt.cpan.org>, or through the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=rgit>.  I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

=head1 SUPPORT

You can find documentation for this module with the perldoc command.

    perldoc App::Rgit::Command::Once

=head1 COPYRIGHT & LICENSE

Copyright 2008-2009 Vincent Pit, all rights reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

=cut
68
691; # End of App::Rgit::Command::Once