use proper markup for code snippet
[catagits/Catalyst-Manual.git] / Makefile.PL
CommitLineData
b1a08fe1 1use strict;
2use warnings;
85c3415e 3use inc::Module::Install 0.87;
169144c5 4
adb0550a 5use Module::Install::AuthorTests;
6use Module::Install::AuthorRequires;
b1a08fe1 7
8dbc5a5b 8name 'Catalyst-Manual';
3778bcbe 9all_from 'lib/Catalyst/Manual.pm';
ee47dd20 10author 'Kieren Diment <zarquon@cpan.org>';
8dbc5a5b 11license 'perl';
12
b1a08fe1 13test_requires 'Test::More';
14
adb0550a 15author_requires 'Pod::Simple' => '3.11'; # L<Foo|http://foo.com> support
16author_requires 'Test::Pod' => '1.14';
17author_requires 'Test::Pod::Coverage' => '1.04';
18author_tests 't/author';
8dbc5a5b 19
20auto_install;
8a80e15e 21
22# r/w: catagits@git.shadowcat.co.uk:Catalyst-Manual.git
d302068e 23resources repository => 'git://git.shadowcat.co.uk/catagits/Catalyst-Manual.git';
ffb3eec6 24
8dbc5a5b 25WriteAll;