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=4f426ccac51df51bf2c4154ba6a3a14fb2037582;hp=1151ee7e51ff846127f1b81060d7dbbbf0d08c11;hb=7476eee4e598700bc0f5fbcc3cd7bcc43160adf3;hpb=61b51634dbbe072d45e5c5a9469723099dc3e891 diff --git a/Makefile.PL b/Makefile.PL index 1151ee7..4f426cc 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,21 @@ 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'; +test_requires 'Catalyst::Action::RenderView'; + +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;