got the basic tests in place, got the types organized how I want this to work. Still...
[gitmo/MooseX-Dependent.git] / Makefile.PL
CommitLineData
3cfd35fd 1use inc::Module::Install;
2
3## All the required meta information
4name 'MooseX-Types-Dependent';
5all_from 'lib/MooseX/Types/Dependent.pm';
6abstract 'Moose Type Constraint for creating Dependent Types Constraints';
7author 'John Napiorkowski <jjnapiork@cpan.org>';
8license 'perl';
9
10## Module dependencies
11requires 'Moose' => '0.73';
12requires 'Scalar::Util' => '1.19';
13
14## Testing dependencies
15build_requires 'Test::More' => '0.70';
16build_requires 'Test::Exception' => '0.27';
17build_requires 'Test::Pod' => '1.14';
18build_requires 'Test::Pod::Coverage' => '1.08';
19
20## Build README
21system 'pod2text lib/MooseX/Types/Dependent.pm > README'
22 if -e 'MANIFEST.SKIP';
23
24## Instructions to Module::Install
25auto_install;
26tests_recursive;
27WriteAll;
28
291;