X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=0619502d43bd820f7ce25887537d53dc3fa01a1c;hb=a3bbd20ae771d7afa119af01efc76c5b2f209e56;hp=2569da9951e78e00f3506990bf85ff259a885761;hpb=ccf49e80884ce57511f742a85791d368a372d893;p=gitmo%2FMoose.git diff --git a/Makefile.PL b/Makefile.PL index 2569da9..0619502 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,6 +1,6 @@ use strict; use warnings; -use inc::Module::Install; +use inc::Module::Install 0.75; name 'Moose'; all_from 'lib/Moose.pm'; @@ -12,8 +12,7 @@ my $win32 = !! ( $^O eq 'Win32' or $^O eq 'cygwin' ); # prereqs requires 'Scalar::Util' => $win32 ? '1.17' : '1.18'; requires 'Carp'; -requires 'Class::MOP' => '0.51'; -requires 'Sub::Name' => '0.02'; +requires 'Class::MOP' => '0.59'; requires 'Sub::Exporter' => '0.972'; # only used by oose.pm, not Moose.pm :P @@ -24,7 +23,9 @@ build_requires 'Test::More' => '0.62'; build_requires 'Test::Exception' => '0.21'; build_requires 'Test::LongString'; -tests('t/*.t t/*/*.t'); +tests_recursive; + +auto_install; WriteAll();