Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 43abc87

Browse files
committed
Added the "configure_requires", "recommends", and "build_requires" parameters
to all `Build.PL` files as appropriate.
1 parent bff01af commit 43abc87

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

Build.PL

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,14 @@ use Module::Build;
33
my $build = Module::Build->new(
44
module_name => 'Text::Diff::HTML',
55
license => 'perl',
6+
create_makefile_pl => 'passthrough',
7+
create_readme => 1,
8+
configure_requires => { 'Module::Build' => '0.2701' },
9+
build_requires => { 'Test::More' => '0.17' },
10+
recommends => { 'Test::Pod' => '1.20' },
611
requires => {
712
Text::Diff => '0.11',
813
HTML::Entities => '0',
914
},
10-
build_requires => { Test::Simple => '0.17' },
11-
create_makefile_pl => 'passthrough',
12-
create_readme => 1,
1315
);
1416
$build->create_build_script;

Changes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
Revision history for Perl extension Text::Diff::HTML.
22

33
0.05
4+
- Added the "configure_requires" and "recommends" parameters to
5+
Build.PL.
46

57
0.04 2005-09-06T16:33:51
68
- Swiched from <span class="ins"> and <span class="del"> to <ins>

0 commit comments

Comments
 (0)