X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=lib%2FApp%2FRgit%2FPolicy%2FDefault.pm;fp=lib%2FApp%2FRgit%2FPolicy%2FDefault.pm;h=a9cbd17781cfcf8695e26035eeab013e79a4286a;hb=dc668e3c302569ed2b5eb2ed893247308f22528a;hp=0000000000000000000000000000000000000000;hpb=edfd59020168422fe2c1baa014f0925968a77c9a;p=perl%2Fmodules%2Frgit.git diff --git a/lib/App/Rgit/Policy/Default.pm b/lib/App/Rgit/Policy/Default.pm new file mode 100644 index 0000000..a9cbd17 --- /dev/null +++ b/lib/App/Rgit/Policy/Default.pm @@ -0,0 +1,57 @@ +package App::Rgit::Policy::Default; + +use strict; +use warnings; + +use App::Rgit::Utils qw/:codes/; + +use base qw/App::Rgit::Policy/; + +=head1 NAME + +App::Rgit::Policy::Default - The default policy that stops on error. + +=head1 VERSION + +Version 0.06 + +=cut + +our $VERSION = '0.06'; + +sub report { + my ($policy, $cmd, $conf, $repo, $status, $signal) = @_; + + $status ? LAST : NEXT; +} + +=head1 SEE ALSO + +L. + +=head1 AUTHOR + +Vincent Pit, C<< >>, L. + +You can contact me by mail or on C (vincent). + +=head1 BUGS + +Please report any bugs or feature requests to C, or through the web interface at L. +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 + +1; # End of App::Rgit::Policy::Default