Fix tests
[gitmo/MooseX-SimpleConfig.git] / Makefile.PL
CommitLineData
33defd43 1# Load the Module::Install bundled in ./inc/
ea0c26ee 2use inc::Module::Install 0.91;
33defd43 3
4name 'MooseX-SimpleConfig';
5all_from 'lib/MooseX/SimpleConfig.pm';
6
7test_requires 'Test::More' => '0.42';
8
a96520dd 9requires 'Moose' => '0.35';
10requires 'MooseX::ConfigFromFile' => '0.02';
c32232f0 11requires 'Config::Any' => '0.13';
33defd43 12
5b519d9c 13test_requires 'Test::More' => '0.88';
14
33defd43 15# Rebuild README for maintainers
ea0c26ee 16system("pod2text lib/MooseX/SimpleConfig.pm >README") and die
17 if $Module::Install::AUTHOR;
33defd43 18
835dc72f 19resources 'IRC' => 'irc://irc.perl.org/#moose';
20resources 'license' => 'http://dev.perl.org/licenses/';
21resources 'repository' => 'git://git.moose.perl.org/MooseX-SimpleConfig.git';
22resources 'MailingList' => 'http://news.gmane.org/gmane.comp.lang.perl.moose';
23
33defd43 24auto_provides;
25auto_install;
26WriteAll;