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