Checking in changes prior to tagging of version 0.10015. Changelog diff is:
[catagits/Catalyst-Plugin-Authentication.git] / Makefile.PL
CommitLineData
e44a7c2f 1use inc::Module::Install 0.87;
1af16f71 2
e866cdd1 3if ( $Module::Install::AUTHOR ) {
4 system( 'pod2text lib/Catalyst/Plugin/Authentication.pm > README' )
5 and die;
6 require Module::Install::AuthorTests;
27bf2c72 7}
8
d0599b6d 9perl_version '5.008001';
10
1af16f71 11name 'Catalyst-Plugin-Authentication';
12all_from 'lib/Catalyst/Plugin/Authentication.pm';
13
1af16f71 14requires 'Catalyst::Runtime';
15requires 'Class::Inspector';
87a5427f 16requires 'MRO::Compat';
1af16f71 17requires 'Catalyst::Plugin::Session' => '0.10';
18
ec9c7364 19test_requires 'Test::More';
d0599b6d 20test_requires 'Test::Exception';
e866cdd1 21test_requires 'Class::MOP';
22test_requires 'Moose';
23
24author_tests 't/author';
ec9c7364 25
1af16f71 26auto_install;
e866cdd1 27resources repository => 'http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-Plugin-Authentication/0.10000/trunk';
46e18596 28
1af16f71 29WriteAll;