version 0.03
[catagits/CatalystX-Script-Server-Starman.git] / Makefile.PL
1 use strict;
2 use warnings;
3 use inc::Module::Install 1.06;
4 use Module::Install::AuthorRequires;
5 use Module::Install::AuthorTests;
6
7 name 'CatalystX-Script-Server-Starman';
8 all_from 'lib/CatalystX/Script/Server/Starman.pm';
9
10 requires 'Moose';
11 requires 'namespace::autoclean';
12
13 requires 'Catalyst::Runtime' => '5.89';
14 requires 'Starman';
15
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://git.shadowcat.co.uk/catagits/CatalystX-Script-Server-Starman.git';
25
26 if ($Module::Install::AUTHOR) {
27     system("pod2text lib/CatalystX/Script/Server/Starman.pm > README")
28         and die $!;
29 }
30
31 WriteAll();