Deal with param passing
[catagits/CatalystX-UriFor-Curried.git] / Makefile.PL
CommitLineData
a42fd357 1use strict;
2use warnings;
3use inc::Module::Install 0.91;
4use Module::Install::AuthorRequires;
5use Module::Install::AuthorTests;
6
7name 'CatalystX-UriFor-Curried';
8all_from 'lib/CatalystX/UriFor/Curried.pm';
9
10requires 'Moose';
c575a0d7 11requires 'MooseX::Types';
12requires 'MooseX::Autobox';
a42fd357 13requires 'namespace::autoclean';
14
15build_requires 'Catalyst::Runtime' => '5.80015';
16build_requires 'Test::WWW::Mechanize::Catalyst';
17build_requires 'Test::More' => '0.88';
18
19author_requires 'Test::Pod::Coverage' => '1.04';
20author_requires 'Test::Pod' => '1.14';
21
22author_tests 't/author';
23
24resources repository => 'git://somewhere.com/myproject.git';
25
26if ($Module::Install::AUTHOR) {
27 system("pod2text lib/CatalystX/UriFor/Curried.pm > README")
28 and die $!;
29}
30
31WriteAll();