Initial commit of Catalyst::Authentication::Realm::Adaptor
[catagits/Catalyst-Authentication-Realm-Adaptor.git] / Makefile.PL
CommitLineData
c6a2d572 1use inc::Module::Install 0.91;
2
3name 'Catalyst-Authentication-Realm-Adaptor';
4all_from 'lib/Catalyst/Authentication/Realm/Adaptor.pm';
5
6perl_version '5.8.1';
7
8if( -e 'MANIFEST.SKIP' ) {
9 system( 'pod2text lib/Catalyst/Authentication/Realm/Adaptor.pm > README');
10}
11
12requires (
13 'Catalyst::Runtime' => 0,
14 'Catalyst::Plugin::Authentication' => 0.10003,
15 'Moose' => 0,
16 );
17
18test_requires ('Test::More' => 0.42);