Sort list of allowed methods. RT#81825
[catagits/Catalyst-Action-REST.git] / Makefile.PL
CommitLineData
63d41fcd 1use strict;
2use warnings;
398c5a1b 3use inc::Module::Install;
63d41fcd 4use Module::Install::AuthorRequires;
4a1b40cd 5use Module::Install::AuthorTests;
7328f0ab 6
7perl_version '5.8.1';
8
9name 'Catalyst-Action-REST';
c7cecf65 10all_from 'lib/Catalyst/Action/REST.pm';
7328f0ab 11
d54b6460 12requires 'Moose' => '1.03';
149182b3 13requires 'namespace::autoclean';
786c212f 14requires('Catalyst::Runtime' => '5.80030');
33e5de96 15requires('Params::Validate' => '0.76');
16requires('YAML::Syck' => '0.67');
8aa1a2ee 17requires('HTML::Parser' => undef);
33e5de96 18requires('Module::Pluggable::Object' => undef);
19requires('LWP::UserAgent' => '2.033');
20requires('Data::Serializer' => '0.36');
21requires('Class::Inspector' => '1.13');
8f00a41b 22requires('URI::Find' => undef);
def65dcc 23requires('MRO::Compat' => '0.10');
8f00a41b 24
930013e6 25requires 'namespace::autoclean';
149182b3 26test_requires 'Test::More' => '0.88';
5ebf67a4 27
4a1b40cd 28author_requires 'Test::Pod' => 1.14;
29author_requires 'Module::Info';
30author_requires 'File::Find::Rule';
31
32author_tests 'xt/';
33
ebba5325 34feature 'JSON (application/json) support',
35 -default => 0,
be35ac1b 36 'JSON' => '2.12',
2f7533ed 37 'JSON::XS' => '2.2222';
ebba5325 38
63d41fcd 39author_requires 'JSON' => '2.12';
40author_requires 'JSON::XS' => '2.2222';
41
46ca391e 42feature 'Data::Taxi (text/x-data-taxi) support (deprecated)',
8f00a41b 43 -default => 0,
44 'Data::Taxi' => undef;
45
63d41fcd 46author_requires 'Data::Taxi';
47
8f00a41b 48feature 'Config::General (text/x-config-general) support',
49 -default => 0,
50 'Config::General' => undef;
63d41fcd 51author_requires 'Config::General';
8f00a41b 52
53feature 'PHP::Serialization (text/x-php-serialization) support',
54 -default => 0,
55 'PHP::Serialization' => undef;
63d41fcd 56author_requires 'PHP::Serialization';
8f00a41b 57
58feature 'FreezeThaw (application/x-freezethaw) support',
59 -default => 0,
60 'FreezeThaw' => undef;
63d41fcd 61author_requires 'FreezeThaw';
8f00a41b 62
63feature 'XML::Simple (text/xml) support',
64 -default => 0,
65 'XML::Simple' => undef;
63d41fcd 66author_requires 'XML::Simple';
33e5de96 67
33e5de96 68auto_install;
7328f0ab 69
63d41fcd 70if ($Module::Install::AUTHOR) {
71 system("pod2text lib/Catalyst/Action/REST.pm > README")
72 and die $!;
73}
74
c1f00522 75repository 'git://git.shadowcat.co.uk/catagits/Catalyst-Action-REST.git';
38c3a9b2 76
5ec67ed4 77add_metadata( x_authority => 'cpan:BOBTFISH' );
78
7328f0ab 79WriteAll;
80