Checking in changes prior to tagging of version 1.012. Changelog diff is:
[catagits/Catalyst-Authentication-Credential-HTTP.git] / Makefile.PL
1 use inc::Module::Install 0.87;
2 use Module::Install::AuthorRequires;
3 use Module::Install::AuthorTests;
4
5 name 'Catalyst-Authentication-Credential-HTTP';
6 all_from 'lib/Catalyst/Authentication/Credential/HTTP.pm';
7
8 requires 'Catalyst::Runtime';
9 requires 'Catalyst::Plugin::Authentication' => '0.10000';
10 requires 'Data::UUID' => '0.11';
11 requires 'String::Escape';
12 requires 'Test::Exception';
13 requires 'Test::MockObject';
14 requires 'URI::Escape';
15 requires 'Class::Accessor::Fast';
16
17 author_requires 'Test::Pod' => '1.14';
18 author_requires 'Test::Spelling' => '0.11';
19 author_requires 'Test::Pod::Coverage' => '1.04';
20
21 resources repository => 'http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-Authentication-Credential-HTTP';
22
23 author_tests 't/author';
24
25 auto_install;
26
27 WriteAll;
28