Just always depend on Scalar::Util 1.14
[gitmo/Mouse.git] / Makefile.PL
1 use inc::Module::Install;
2
3 name     'Mouse';
4 all_from 'lib/Mouse.pm';
5
6 tests 't/*.t t/*/*.t';
7
8 # Scalar::Util < 1.14 has a bug.
9 # > Fixed looks_like_number(undef) to return false for perl >= 5.009002
10 requires 'Scalar::Util' => 1.14;
11
12 build_requires 'Test::Exception';
13 build_requires 'Test::More';
14
15 auto_include;
16 WriteAll;