Pod fix
[catagits/Catalyst-Plugin-Authentication.git] / Makefile.PL
1 use strict;
2 use warnings;
3 use inc::Module::Install 0.87;
4 use Module::Install::AuthorRequires;
5 use Module::Install::AuthorTests;
6
7 if ( $Module::Install::AUTHOR ) {
8     system( 'pod2text lib/Catalyst/Plugin/Authentication.pm > README' )
9         and die;
10 }
11
12 perl_version '5.008001';
13
14 name 'Catalyst-Plugin-Authentication';
15 all_from 'lib/Catalyst/Plugin/Authentication.pm';
16
17 requires 'Catalyst::Runtime';
18 requires 'Class::Inspector';
19 requires 'MRO::Compat';
20 requires 'Catalyst::Plugin::Session' => '0.10';
21 requires 'Moose';
22 requires 'MooseX::Emulate::Class::Accessor::Fast';
23 requires 'namespace::clean';
24
25
26 test_requires 'Test::More' => '0.88';
27 test_requires 'Test::Exception';
28 test_requires 'Class::MOP';
29 test_requires 'Moose';
30
31 author_requires 'Test::Pod' => '1.14';
32 author_requires 'Test::Pod::Coverage' => '1.04';
33 author_requires 'Test::NoTabs';
34 author_requires 'Test::WWW::Mechanize::Catalyst';
35 author_requires 'Catalyst::Plugin::Session';
36 author_requires 'Catalyst::Plugin::Session::State::Cookie';
37 author_requires 'Digest::SHA1';
38
39 author_tests 't/author';
40
41 auto_install;
42 resources repository => 'git://git.shadowcat.co.uk/catagits/Catalyst-Plugin-Authentication.git';
43
44 WriteAll;