X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=241587202d689a1a3fed679839736b8c60dee00b;hb=3df7058c650f45b4ad6b1f771dc7d969a551a3cf;hp=3cba7047b121ce38a1e6e314b1171f3e143a330f;hpb=cfee09ad9535c50ee223c90fb34afd9667866bcb;p=gitmo%2FMooseX-Storage.git diff --git a/Makefile.PL b/Makefile.PL index 3cba704..2415872 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,12 +1,15 @@ # Load the Module::Install bundled in ./inc/ -use inc::Module::Install; +use inc::Module::Install 0.75; +use Module::Install::AuthorRequires; +use Module::Install::AuthorTests; # Define metadata name 'MooseX-Storage'; all_from 'lib/MooseX/Storage.pm'; # Specific dependencies -requires 'Moose' => '0.20'; +requires 'Moose' => '0.87'; +requires 'String::RewritePrefix'; # you should have at least one # serialization format @@ -30,10 +33,17 @@ feature 'File', -default => 1, 'IO::File' => '0.1'; +author_tests 't/author'; + build_requires 'Test::More' => '0.42'; +build_requires 'Test::Deep' => '0'; build_requires 'Test::Exception' => '0'; +build_requires 'Test::TempDir' => '0.02'; + +author_requires 'Test::Pod' => '1.14'; +author_requires 'Test::Pod::Coverage' => '1.08'; -no_index 'directory' => 'ex'; +resources repository => 'git://git.moose.perl.org/gitmo/MooseX-Storage.git'; -auto_install; WriteAll; +