X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Manual.git;a=blobdiff_plain;f=Makefile.PL;h=e6d337c8c153855e5b5bb7d69da85ddcfb439fa6;hp=adade639016449696977ea8b5f4e262684e14f8d;hb=3f60663db5785414c07f209ed82b090762f0a9b7;hpb=b1a08fe19fd4ce1cd7756727319d08156b1e563f diff --git a/Makefile.PL b/Makefile.PL index adade63..e6d337c 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -2,9 +2,8 @@ use strict; use warnings; use inc::Module::Install 0.87; -BEGIN { - require 'Module::Install::AuthorRequires'; -} +use Module::Install::AuthorTests; +use Module::Install::AuthorRequires; name 'Catalyst-Manual'; all_from 'lib/Catalyst/Manual.pm'; @@ -13,11 +12,14 @@ license 'perl'; test_requires 'Test::More'; -author_requires 'Test::Pod'; -author_requires 'Test::Pod::Coverage'; +author_requires 'Pod::Simple' => '3.11'; # L support +author_requires 'Test::Pod' => '1.14'; +author_requires 'Test::Pod::Coverage' => '1.04'; +author_tests 't/author'; auto_install; -resources repository => 'http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-Manual/5.80/trunk/'; -WriteAll; +# r/w: catagits@git.shadowcat.co.uk:Catalyst-Manual.git +resources repository => 'git://git.shadowcat.co.uk/catagits/Catalyst-Manual.git'; +WriteAll;