File Coverage

File:blib/lib/App/Rgit/Policy/Default.pm
Coverage:100.0%

linestmtbrancondsubpodtimecode
1package App::Rgit::Policy::Default;
2
3
3
3
3
2468
10
120
use strict;
4
3
3
3
598
8
221
use warnings;
5
6
3
3
3
23
10
727
use App::Rgit::Utils qw/:codes/;
7
8
3
3
3
43
8
792
use base qw/App::Rgit::Policy/;
9
10 - 18
=head1 NAME

App::Rgit::Policy::Default - The default policy that stops on error.

=head1 VERSION

Version 0.08

=cut
19
20our $VERSION = '0.08';
21
22 - 35
=head1 DESCRIPTION

This is the default policy.
It stops as soon as a run returned a non-zero status, but continues if it was signalled.

=head1 METHODS

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

It implements :

=head2 C<handle>

=cut
36
37sub handle {
38
4
1
16
 my ($policy, $cmd, $conf, $repo, $status, $signal) = @_;
39
40
4
79
 $status ? LAST : NEXT;
41}
42
43 - 72
=head1 SEE ALSO

L<rgit>.

L<App::Rgit::Policy>.

=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::Policy::Default

=head1 COPYRIGHT & LICENSE

Copyright 2008,2009,2010 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
73
741; # End of App::Rgit::Policy::Default