Skip to content

Commit

Permalink
(GH-1) Update meta files for new prereq.
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaumeaubert committed Apr 16, 2016
1 parent 4b54166 commit aa77163
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
"Git::Repository" : "0",
"Test::Exception" : "0",
"Test::FailWarnings" : "0",
"Test::Git" : "0",
"Test::More" : "0.94"
"Test::More" : "0.94",
"Test::Requires::Git" : "1.005"
}
},
"configure" : {
Expand Down
2 changes: 1 addition & 1 deletion META.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ build_requires:
Git::Repository: '0'
Test::Exception: '0'
Test::FailWarnings: '0'
Test::Git: '0'
Test::More: '0.94'
Test::Requires::Git: '1.005'
configure_requires:
Module::Build: '0'
dynamic_config: 1
Expand Down
22 changes: 11 additions & 11 deletions Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,23 @@ require 5.010;
use ExtUtils::MakeMaker;
WriteMakefile
(
'VERSION_FROM' => 'lib/App/GitHooks/Plugin/BlockProductionCommits.pm',
'test' => {
'TESTS' => 't/*.t'
},
'PL_FILES' => {},
'INSTALLDIRS' => 'site',
'NAME' => 'App::GitHooks::Plugin::BlockProductionCommits',
'EXE_FILES' => [],
'VERSION_FROM' => 'lib/App/GitHooks/Plugin/BlockProductionCommits.pm',
'PREREQ_PM' => {
'App::GitHooks' => 0,
'Test::Requires::Git' => 1.005,
'Test::Exception' => 0,
'Capture::Tiny' => 0,
'Test::More' => '0.94',
'Git::Repository' => 0,
'Test::Requires::Git' => '1.005',
'Test::FailWarnings' => 0,
'Carp' => 0,
'Test::More' => '0.94',
'Git::Repository' => 0
}
'Capture::Tiny' => 0,
'Test::Exception' => 0
},
'NAME' => 'App::GitHooks::Plugin::BlockProductionCommits',
'PL_FILES' => {},
'INSTALLDIRS' => 'site',
'EXE_FILES' => []
)
;

0 comments on commit aa77163

Please sign in to comment.