X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=Makefile.PL;h=faafffa61df2c64509b040eb5e6e0a7db85b463d;hp=be080627e993e482bd1244cabae886f70c8c4dd7;hb=2373117d9bd344ca965af23d86d54756f1fdcfab;hpb=582cd214c503e4df1a6ad58e5bccb1c0ac2852a1 diff --git a/Makefile.PL b/Makefile.PL index be08062..faafffa 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -23,6 +23,7 @@ requires 'MooseX::Emulate::Class::Accessor::Fast' => '0.00903'; requires 'Class::MOP' => '0.83'; requires 'Moose' => '0.90'; requires 'MooseX::MethodAttributes::Inheritable' => '0.17'; +requires 'MooseX::Role::WithOverloading' => '0.03'; requires 'Carp'; requires 'Class::C3::Adopt::NEXT' => '0.07'; requires 'CGI::Simple::Cookie'; @@ -52,6 +53,7 @@ recommends 'B::Hooks::OP::Check::StashChange'; test_requires 'Class::Data::Inheritable'; test_requires 'Test::Exception'; +test_requires 'Test::More' => '0.88'; # aggregate tests if AGGREGATE_TESTS is set and a recent Test::Aggregate and a Test::Simple it works with is available if ($ENV{AGGREGATE_TESTS} && can_use('Test::Simple', '0.88') && can_use('Test::Aggregate', '0.35_05')) { @@ -64,6 +66,7 @@ else { map { glob } qw[t/*.t t/aggregate/*.t]; } author_requires 'CatalystX::LeakChecker', '0.03'; # Skipped if this isn't installed +author_requires 'File::Copy::Recursive'; # For http server test author_tests 't/author'; author_requires(map {; $_ => 0 } qw( @@ -153,7 +156,7 @@ sub darwin_check_no_resource_forks { my $attr = $osx_ver =~ /^10.(5|6)/ ? 'COPYFILE_DISABLE' : 'COPY_EXTENDED_ATTRIBUTES_DISABLE'; makemaker_args(dist => { PREOP => qq{\@if [ "\$\$$attr" != "true" ]; then}. - qq{ echo "You must set the ENV variable $attr to true,"; }. + qq{ echo "You must set the ENV variable $attr to 'true',"; }. ' echo "to avoid getting resource forks in your dist."; exit 255; fi' }); } }