From: Tomas Doran Date: Sun, 6 Dec 2009 12:13:01 +0000 (+0000) Subject: Force the optional test dep in author mode X-Git-Tag: 1.23~2^2 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Devel.git;a=commitdiff_plain;h=18c940b88508381b020a3584cacf2199a87ec539 Force the optional test dep in author mode --- diff --git a/Makefile.PL b/Makefile.PL index 0ffa8b7..1c1901a 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,4 +1,7 @@ +use strict; +use warnings; use inc::Module::Install 0.91; +use Module::Install::AuthorRequires; name 'Catalyst-Devel'; all_from 'lib/Catalyst/Devel.pm'; @@ -19,6 +22,8 @@ requires 'Module::Install' => '0.91'; requires 'Path::Class' => '0.09'; requires 'Template' => '2.14'; +author_requires 'IPC::Run3'; + test_requires 'Test::More' => '0.90'; install_share 'share';