X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=7311fb848757eaab3b7c91807691cdd4747c98eb;hb=f671555230c6928a7834a9c6be047649cd0c4f5b;hp=07cf38c9a1196c4ae8898d9f73079f9be65459c8;hpb=00ca1c62fb631cb9b01962299f5e72b20b8063ec;p=gitmo%2FMouse.git diff --git a/Makefile.PL b/Makefile.PL index 07cf38c..7311fb8 100755 --- a/Makefile.PL +++ b/Makefile.PL @@ -3,11 +3,14 @@ use inc::Module::Install; name 'Mouse'; all_from 'lib/Mouse.pm'; -requires 'Scalar::Util'; -requires 'Class::Method::Modifiers' => '1.01'; +tests 't/*.t t/*/*.t'; + +if ($] < 5.007003) { + requires 'Scalar::Util'; +} -build_requires 'Test::More'; build_requires 'Test::Exception'; +build_requires 'Test::More'; +auto_include; WriteAll; -