Checking in changes prior to tagging of version 0.100092_01. Changelog diff is:
[catagits/Catalyst-Plugin-Authentication.git] / Makefile.PL
CommitLineData
7a8da4b8 1use inc::Module::Install 0.67;
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';
14requires 'Catalyst::Plugin::Session' => '0.10';
15
948295dd 16test_requires 'Test::More';
71f2a7df 17test_requires 'Test::Exception';
1ae2143a 18test_requires 'Test::MockObject';
948295dd 19
f35dde03 20auto_install;
21WriteAll;