POD fix
[catagits/Catalyst-Plugin-Authentication.git] / Makefile.PL
CommitLineData
d4201786 1use inc::Module::Install 0.87;
f35dde03 2
85c6f23d 3if( -e 'MANIFEST.SKIP' ) {
4 system( 'pod2text lib/Catalyst/Plugin/Authentication.pm > README' );
5}
6
71f2a7df 7perl_version '5.008001';
8
f35dde03 9name 'Catalyst-Plugin-Authentication';
10all_from 'lib/Catalyst/Plugin/Authentication.pm';
11
f35dde03 12requires 'Catalyst::Runtime';
13requires 'Class::Inspector';
47cede3d 14requires 'MRO::Compat';
f35dde03 15requires 'Catalyst::Plugin::Session' => '0.10';
16
948295dd 17test_requires 'Test::More';
71f2a7df 18test_requires 'Test::Exception';
1ae2143a 19test_requires 'Test::MockObject';
948295dd 20
f35dde03 21auto_install;
dc09e932 22resources repository => 'http://dev.catalyst.perl.org/repos/Catalyst/trunk/Catalyst-Plugin-Authentication/';
23
f35dde03 24WriteAll;