Bump version, changelog
[catagits/CatalystX-Debug-ResponseHeaders.git] / Makefile.PL
CommitLineData
019a8a6a 1use strict;
2use warnings;
3use inc::Module::Install 0.91;
4use Module::Install::AuthorRequires;
5use Module::Install::AuthorTests;
6
7name 'CatalystX-Debug-ResponseHeaders';
8all_from 'lib/CatalystX/Debug/ResponseHeaders.pm';
9
10requires 'Moose';
11requires 'namespace::autoclean';
12
c74a34bd 13build_requires 'Catalyst::Runtime' => '5.80022';
019a8a6a 14build_requires 'Test::WWW::Mechanize::Catalyst';
15build_requires 'Test::More' => '0.88';
16
17author_requires 'Test::Pod::Coverage' => '1.04';
18author_requires 'Test::Pod' => '1.14';
19
20author_tests 't/author';
21
d7433baa 22resources repository => 'git://git.shadowcat.co.uk/catagits/CatalystX-Debug-ResponseHeaders';
019a8a6a 23
24if ($Module::Install::AUTHOR) {
25 system("pod2text lib/CatalystX/Debug/ResponseHeaders.pm > README")
26 and die $!;
27}
28
29WriteAll();