X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-View-Component-SubInclude.git;a=blobdiff_plain;f=Makefile.PL;h=b45f63921628924492a4d2fcca3d61c1fc381457;hp=1151ee7e51ff846127f1b81060d7dbbbf0d08c11;hb=09b238b37e903de72e44c5e730e368690a54f373;hpb=5885e91c9ec18bbb5a5572b4ca619f3d2fa99f5d diff --git a/Makefile.PL b/Makefile.PL index 1151ee7..b45f639 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,6 +1,8 @@ -# IMPORTANT: if you delete this file your app will not work as -# expected. you have been warned -use inc::Module::Install; +use strict; +use warnings; +use inc::Module::Install 0.91; +use Module::Install::AuthorRequires; +use Module::Install::AuthorTests; name 'Catalyst-View-Component-SubInclude'; all_from 'lib/Catalyst/View/Component/SubInclude.pm'; @@ -14,6 +16,10 @@ requires 'namespace::clean'; test_requires 'Catalyst::View::TT'; +author_requires 'Test::Pod::Coverage' => '1.04'; +author_requires 'Test::Pod' => '1.14'; +author_tests 't/author'; + catalyst; auto_install;