Ignore MYMETA.yml
[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;
b1a08fe1 21resources repository => 'http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-Manual/5.80/trunk/';
ffb3eec6 22
8dbc5a5b 23WriteAll;
b1a08fe1 24