X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=35a16b1dec32c94243f93e8d45ab01853220453f;hb=HEAD;hp=b5d915cdb689488d3cb65cd65bd6017f7f7f90ef;hpb=4f6d213e1b66ba3fd93ce439309af5857775a143;p=catagits%2FTest-WWW-Selenium-Catalyst.git diff --git a/Makefile.PL b/Makefile.PL index b5d915c..35a16b1 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,18 +1,26 @@ use strict; use warnings; -use inc::Module::Install; +use inc::Module::Install 0.91; +#use Module::Install::AuthorRequires; -name('Test-WWW-Selenium-Catalyst'); -author('Jonathan Rockway '); -version_from('lib/Test/WWW/Selenium/Catalyst.pm'); -abstract_from('lib/Test/WWW/Selenium/Catalyst.pm'); -license('Perl'); -include('ExtUtils::AutoInstall'); +name 'Test-WWW-Selenium-Catalyst'; +perl_version '5.008000'; +all_from 'lib/Test/WWW/Selenium/Catalyst.pm'; +license 'Perl'; requires( 'Alien::SeleniumRC' => 0, - 'Catalyst::Runtime' => 5.7001, + 'Catalyst::Runtime' => '5.9', 'Test::WWW::Selenium' => 0, 'Test::More' => 0, + 'Catalyst::Utils' => 0, ); -auto_install(); + +test_requires 'IPC::Cmd' => '0.42'; +test_requires 'Test::More' => '0.92'; + +#author_requires 'Test::Pod'; +#author_requires 'Test::Pod::Coverage'; + +resources repository => 'git://git.shadowcat.co.uk/catagits/Test-WWW-Selenium-Catalyst.git'; + WriteAll();