X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=40c927519c7343afc0abf717fe4e9d0d771c9602;hb=ac0351e16fa05aaed6d887258256374cad670497;hp=d344e080a6222340880046bdb6592718949b93df;hpb=9c02f7aa12c546a85435a362efc92eb4658423fe;p=catagits%2FCatalyst-Authentication-Credential-HTTP.git diff --git a/Makefile.PL b/Makefile.PL index d344e08..40c9275 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,4 +1,6 @@ use inc::Module::Install 0.87; +use Module::Install::AuthorRequires; +use Module::Install::AuthorTests; name 'Catalyst-Authentication-Credential-HTTP'; all_from 'lib/Catalyst/Authentication/Credential/HTTP.pm'; @@ -12,10 +14,15 @@ requires 'Test::MockObject'; requires 'URI::Escape'; requires 'Class::Accessor::Fast'; +author_requires 'Test::Pod' => '1.14'; +author_requires 'Test::Spelling' => '0.11'; +author_requires 'Test::Pod::Coverage' => '1.04'; + resources repository => 'http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-Authentication-Credential-HTTP'; +author_tests 't/author'; + auto_install; -resources repository => 'http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-Authentication-Credential-HTTP/1.000/trunk/'; WriteAll;