X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Action-Serialize-Data-Serializer.git;a=blobdiff_plain;f=Makefile.PL;h=0910ee636001ae2f276c74e5e72f9c3499ce1318;hp=f7ad13dbf25031ba4cde18ff5764f07a0235e982;hb=HEAD;hpb=c7cecf652a7c6d86f02de81ddca6d17742d8175a diff --git a/Makefile.PL b/Makefile.PL index f7ad13d..0910ee6 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,17 +1,41 @@ -use inc::Module::Install 0.64; +use strict; +use warnings; +use inc::Module::Install; +use Module::Install::AuthorRequires; +use Module::Install::AuthorTests; +use Module::Install::Authority; perl_version '5.8.1'; -name 'Catalyst-Action-REST'; -all_from 'lib/Catalyst/Action/REST.pm'; +name 'Catalyst-Action-Serialize-Data-Serializer'; +all_from 'lib/Catalyst/Action/Serialize/Data/Serializer.pm'; -'Catalyst' => '5.7001', -'Params::Validate' => '0.76', -'YAML::Syck' => '0.67', -'Module::Pluggable::Object' => undef, -'LWP::UserAgent' => '2.033', -'Data::Serializer' => '0.36', -'Class::Inspector' => '1.13', +requires('Catalyst::Action::REST' => '1.08'); +requires 'Moose' => '1.03'; +requires 'namespace::autoclean'; +requires('Catalyst::Runtime' => '5.80030'); +requires('Data::Serializer' => '0.36'); + +test_requires 'Test::More' => '0.88'; + +authority 'MSTROUT'; +author_requires 'Test::Pod' => 1.14; +author_requires 'Module::Info'; +author_requires 'File::Find::Rule'; + +author_tests 'xt/'; + +auto_install; + +if ($Module::Install::AUTHOR) { + system("pod2text lib/Catalyst/Action/Serialize/Data/Serializer.pm > README") + and die $!; +} + +repository + 'git://git.shadowcat.co.uk/catagits/Catalyst-Action-Serialize-Data-Serializer.git'; + +add_metadata( x_authority => 'cpan:BOBTFISH' ); WriteAll;