-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMakefile.PL
53 lines (53 loc) · 2.03 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
# Note: this file was auto-generated by Module::Build::Compat version 0.4205
require 5.010;
use ExtUtils::MakeMaker;
WriteMakefile
(
'EXE_FILES' => [
'bin/githooks'
],
'PL_FILES' => {},
'NAME' => 'App::GitHooks',
'PREREQ_PM' => {
'Test::Requires::Git' => '1.005',
'autodie' => 0,
'File::Spec' => 0,
'Data::Section' => 0,
'Cwd' => 0,
'Test::Deep' => 0,
'Term::Encoding' => 0,
'Data::Validate::Type' => 0,
'Config::Tiny' => 0,
'Storable' => 0,
'Try::Tiny' => 0,
'Test::Exception' => 0,
'Readonly' => 0,
'Git::Repository' => 0,
'Test::Type' => '1.002',
'Getopt::Long' => 0,
'Text::Wrap' => 0,
'Parallel::ForkManager' => 0,
'Pod::Usage' => 0,
'Test::Git' => 0,
'Capture::Tiny' => 0,
'Term::ReadKey' => 0,
'Scalar::Util' => 0,
'Test::Compile' => '1.001',
'Path::Tiny' => 0,
'File::Temp' => 0,
'Data::Dumper' => 0,
'Module::Pluggable' => 0,
'File::Basename' => 0,
'Test::More' => 0,
'Carp' => 0,
'Class::Load' => 0,
'Term::ANSIColor' => 0,
'Test::FailWarnings' => 0
},
'test' => {
'TESTS' => 't/*.t t/45-Hook/*.t t/45-Hook/PreCommit/*.t t/45-Hook/PrepareCommitMsg/*.t t/45-Hook/CommitMsg/*.t t/17-CommitMessage/*.t t/14-Utils/*.t t/13-Config/*.t t/90-githooks/*.t t/05-Terminal/*.t t/40-Plugin/*.t t/40-Plugin/PrintSTDERR/*.t t/40-Plugin/CustomReply/*.t t/06-Constants/*.t'
},
'VERSION_FROM' => 'lib/App/GitHooks.pm',
'INSTALLDIRS' => 'site'
)
;