forked from bobtfish/catalyst-action-rest
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile.PL
78 lines (59 loc) · 1.97 KB
/
Makefile.PL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
use strict;
use warnings;
use inc::Module::Install;
use Module::Install::AuthorRequires;
use Module::Install::AuthorTests;
perl_version '5.8.1';
name 'Catalyst-Action-REST';
all_from 'lib/Catalyst/Action/REST.pm';
requires 'Moose';
requires 'namespace::autoclean';
requires('Catalyst::Runtime' => '5.80');
requires('Params::Validate' => '0.76');
requires('YAML::Syck' => '0.67');
requires('Module::Pluggable::Object' => undef);
requires('LWP::UserAgent' => '2.033');
requires('Data::Serializer' => '0.36');
requires('Class::Inspector' => '1.13');
requires('URI::Find' => undef);
requires('MRO::Compat' => '0.10');
requires 'namespace::autoclean';
test_requires 'Test::More' => '0.88';
author_requires 'Test::Pod' => 1.14;
author_requires 'Module::Info';
author_requires 'File::Find::Rule';
author_tests 'xt/';
feature 'JSON (application/json) support',
-default => 0,
'JSON' => '2.12';
'JSON::XS' => '2.2222';
author_requires 'JSON' => '2.12';
author_requires 'JSON::XS' => '2.2222';
feature 'Data::Taxi (text/x-data-taxi) support',
-default => 0,
'Data::Taxi' => undef;
author_requires 'Data::Taxi';
feature 'Config::General (text/x-config-general) support',
-default => 0,
'Config::General' => undef;
author_requires 'Config::General';
feature 'PHP::Serialization (text/x-php-serialization) support',
-default => 0,
'PHP::Serialization' => undef;
author_requires 'PHP::Serialization';
feature 'FreezeThaw (application/x-freezethaw) support',
-default => 0,
'FreezeThaw' => undef;
author_requires 'FreezeThaw';
feature 'XML::Simple (text/xml) support',
-default => 0,
'XML::Simple' => undef;
author_requires 'XML::Simple';
auto_include;
auto_install;
if ($Module::Install::AUTHOR) {
system("pod2text lib/Catalyst/Action/REST.pm > README")
and die $!;
}
repository 'git://git.shadowcat.co.uk/catagits/Catalyst-Action-REST.git';
WriteAll;