Tidy up notes about realms key in configuration, all the clues came from jayk++
[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';
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;
22WriteAll;