File Coverage

File:blib/lib/App/Rgit/Policy/Keep.pm
Coverage:89.5%

linestmtbrancondsubpodtimecode
1package App::Rgit::Policy::Keep;
2
3
2
2
2
2899
6
73
use strict;
4
2
2
2
13
5
114
use warnings;
5
6
2
2
2
13
5
400
use App::Rgit::Utils qw/:codes/;
7
8
2
2
2
16
4
412
use base qw/App::Rgit::Policy/;
9
10 - 18
=head1 NAME

App::Rgit::Policy::Keep - A policy that ignores errors.

=head1 VERSION

Version 0.08

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

This policy always proceed to the next repository even when an error occurs.

=head1 METHODS

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

It implements :

=head2 C<handle>

=cut
35
36
0
1
sub handle { NEXT }
37
38 - 67
=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::Keep

=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
68
691; # End of App::Rgit::Policy::Keep