X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FModule-Metadata.git;a=blobdiff_plain;f=Author.PL;h=04dd5858ccd0e9d8708983be0b137c66b4df5134;hp=c2f52d96178689905aefa88f6624d084fbe059d3;hb=534471a1fea2b54281a1a2ad2b108df8b0ca1e3d;hpb=2e941adaf9815086c591bdc39e616b9c19502878 diff --git a/Author.PL b/Author.PL index c2f52d9..04dd585 100644 --- a/Author.PL +++ b/Author.PL @@ -1,14 +1,26 @@ use strict; use warnings FATAL => 'all'; +my $POSTAMBLE = q{bump: + maint/bump-version +bumpminor: + maint/bump-version minor +bumpmajor: + maint/bump-version major +}; + { package MY; + { no warnings 'once'; push @ExtUtils::MakeMaker::Overridable, 'find_tests'; } + sub find_tests { shift->SUPER::find_tests.' xt/*.t'; } + + sub postamble { $POSTAMBLE } } {