6a05d219dd5726f8f2792f2fc6771c0c0ed3ba52
[gitmo/MooseX-Attribute-Cached.git] / Makefile.PL
1 use inc::Module::Install;
2
3 perl_version '5.008006';
4
5 name     'MooseX-Attribute-Cached';
6 all_from 'lib/MooseX/Attribute/Cached.pm';
7 author   'John Napiorkowski <jjn1056@yahoo.com>';
8
9 requires 'Moose' => '0.42';
10
11 build_requires 'Test::More' => '0.70';
12 build_requires 'Test::Pod' => '1.14';
13 build_requires 'Test::Pod::Coverage' => '1.08';
14
15 auto_install;
16 tests "t/*.t t/*/*.t";
17 WriteAll;
18