Skip to content

Commit

Permalink
Fix some prereqs mixups
Browse files Browse the repository at this point in the history
  • Loading branch information
genio committed Sep 26, 2020
1 parent f4057ad commit 2a9bc42
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 deletions.
5 changes: 3 additions & 2 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
"XSLoader" : "0",
"perl" : "5.006",
"strict" : "0",
"vars" : "0"
"warnings" : "0"
}
},
"test" : {
Expand All @@ -73,7 +73,8 @@
"Test" : "0",
"Test::More" : "0",
"perl" : "5.006",
"strict" : "0"
"strict" : "0",
"warnings" : "0"
}
}
},
Expand Down
7 changes: 4 additions & 3 deletions Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,15 @@ my %WriteMakefileArgs = (
"Exporter" => 0,
"XSLoader" => 0,
"strict" => 0,
"vars" => 0
"warnings" => 0
},
"TEST_REQUIRES" => {
"ExtUtils::MakeMaker" => 0,
"File::Spec" => 0,
"Test" => 0,
"Test::More" => 0,
"strict" => 0
"strict" => 0,
"warnings" => 0
},
"VERSION" => "3.16",
"test" => {
Expand All @@ -43,7 +44,7 @@ my %FallbackPrereqs = (
"Test::More" => 0,
"XSLoader" => 0,
"strict" => 0,
"vars" => 0
"warnings" => 0
);

unless ( eval { ExtUtils::MakeMaker->VERSION('6.63_03') } ) {
Expand Down
4 changes: 3 additions & 1 deletion cpanfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
on 'runtime' => sub {
requires 'strict';
requires 'vars';
requires 'warnings';
requires 'Exporter';
requires 'XSLoader';
};
Expand All @@ -11,7 +11,9 @@ on 'configure' => sub {

on 'test' => sub {
requires 'strict';
requires 'warnings';
requires 'Test';
requires 'Test::More';
};

on 'develop' => sub {
Expand Down
1 change: 1 addition & 0 deletions lib/MIME/Base64.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package MIME::Base64;

use strict;
use warnings;

require Exporter;
our @ISA = qw(Exporter);
Expand Down
1 change: 1 addition & 0 deletions lib/MIME/QuotedPrint.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package MIME::QuotedPrint;

use strict;
use warnings;

require Exporter;
our @ISA = qw(Exporter);
Expand Down

0 comments on commit 2a9bc42

Please sign in to comment.