-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile.PL
48 lines (46 loc) · 1.58 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
# Generated by git-ship. See 'git-ship --man' for help or https://github.com/jhthorsen/app-git-ship
use utf8;
use ExtUtils::MakeMaker;
my %WriteMakefileArgs = (
NAME => 'Mojo::Transaction::HTTP::Role::Mechanize',
AUTHOR => 'Roy Storey <[email protected]>',
LICENSE => 'artistic_2',
ABSTRACT_FROM => 'lib/Mojo/Transaction/HTTP/Role/Mechanize.pm',
VERSION_FROM => 'lib/Mojo/Transaction/HTTP/Role/Mechanize.pm',
EXE_FILES => [qw()],
OBJECT => '',
BUILD_REQUIRES => {}
,
TEST_REQUIRES => {
'Test::More' => '0.80'
}
,
PREREQ_PM => {
'Class::Method::Modifiers' => '2.00',
'Mojolicious' => '8.10',
'Role::Tiny' => '2.000001',
'perl' => 'v5.10.0'
}
,
META_MERGE => {
'dynamic_config' => 0,
'meta-spec' => {version => 2},
'resources' => {
bugtracker => {web => 'https://github.com/kiwiroy/mojo-transaction-http-role-mechanize/issues'},
homepage => 'https://github.com/kiwiroy/mojo-transaction-http-role-mechanize',
repository => {
type => 'git',
url => 'https://github.com/kiwiroy/mojo-transaction-http-role-mechanize.git',
web => 'https://github.com/kiwiroy/mojo-transaction-http-role-mechanize',
},
},
'x_contributors' => []
,
},
test => {TESTS => (-e 'META.yml' ? 't/*.t' : 't/*.t xt/*.t')},
);
unless (eval { ExtUtils::MakeMaker->VERSION('6.63_03') }) {
my $test_requires = delete $WriteMakefileArgs{TEST_REQUIRES};
@{$WriteMakefileArgs{PREREQ_PM}}{keys %$test_requires} = values %$test_requires;
}
WriteMakefile(%WriteMakefileArgs);