X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=d09b915e8a39cc5bd030ad36899e0078d4700c5f;hb=cc37b7b32b018f25612606a817a0588d10acdf7a;hp=1151ee7e51ff846127f1b81060d7dbbbf0d08c11;hpb=61b51634dbbe072d45e5c5a9469723099dc3e891;p=catagits%2FCatalyst-View-Component-SubInclude.git diff --git a/Makefile.PL b/Makefile.PL index 1151ee7..d09b915 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'; @@ -9,12 +11,20 @@ requires 'Catalyst::Runtime' => '5.80014'; requires 'Catalyst::Plugin::SubRequest'; requires 'Moose'; requires 'Moose::Role'; +requires 'MooseX::Types'; requires 'Carp'; requires 'namespace::clean'; +test_requires 'Test::More' => '0.88'; test_requires 'Catalyst::View::TT'; +author_requires 'Test::Pod::Coverage' => '1.04'; +author_requires 'Test::Pod' => '1.14'; +author_tests 't/author'; + catalyst; +resources repository => 'git://git.shadowcat.co.uk/catagits/Catalyst-View-Component-SubInclude'; + auto_install; WriteAll;