r10518@t0mlaptop (orig r10517): t0m | 2009-06-12 11:27:58 +0100
[catagits/Catalyst-Plugin-Authentication.git] / Makefile.PL
1 use inc::Module::Install 0.87;
2
3 if ( $Module::Install::AUTHOR ) {
4     system( 'pod2text lib/Catalyst/Plugin/Authentication.pm > README' )
5         and die;
6     require Module::Install::AuthorTests;
7 }
8
9 perl_version '5.008001';
10
11 name 'Catalyst-Plugin-Authentication';
12 all_from 'lib/Catalyst/Plugin/Authentication.pm';
13
14 requires 'Moose' => '0.78';
15 requires 'namespace::autoclean' => '0.05';
16 requires 'Catalyst::Runtime' => '5.80004';
17 requires 'Class::Inspector';
18 requires 'MRO::Compat';
19 requires 'Catalyst::Plugin::Session' => '0.10';
20
21 test_requires 'Test::More' => '0.88';
22 test_requires 'Test::Exception';
23 test_requires 'Class::MOP';
24 test_requires 'Moose';
25
26 author_tests 't/author';
27
28 auto_install;
29 resources repository => 'http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-Plugin-Authentication/0.10000/trunk';
30
31 WriteAll;