forked from bobtfish/catalyst-traitfor-request-proxybase
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile.PL
More file actions
34 lines (25 loc) · 769 Bytes
/
Makefile.PL
File metadata and controls
34 lines (25 loc) · 769 Bytes
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
use strict;
use warnings;
use inc::Module::Install 0.91;
BEGIN {
if ($Module::Install::AUTHOR) {
require Module::Install::AuthorTests;
}
}
name 'Catalyst-TraitFor-Request-ProxyBase';
all_from 'lib/Catalyst/TraitFor/Request/ProxyBase.pm';
requires 'URI';
requires 'Moose';
requires 'namespace::autoclean';
test_requires 'Catalyst::Runtime' => '5.80007';
test_requires 'CatalystX::RoleApplicator' => '0.005';
test_requires 'Test::More';
test_requires 'HTTP::Request::Common';
resources repository => 'http://github.com/bobtfish/catalyst-traitfor-request-proxybase';
license 'perl';
author_tests('t/author');
WriteAll();
if ($Module::Install::AUTHOR) {
system("pod2text lib/Catalyst/TraitFor/Request/ProxyBase.pm > README")
and die;
}