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