Skip to content

Commit

Permalink
(GH-1) Remove Data::Dumper prereq.
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaumeaubert committed Mar 6, 2016
1 parent c4c42a9 commit bf4365b
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 12 deletions.
1 change: 0 additions & 1 deletion Build.PL
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ my $builder = $class->new(
{
'perl' => 5.008,
'Carp' => 0,
'Data::Dumper' => 0,
},
add_to_cleanup =>
[
Expand Down
1 change: 0 additions & 1 deletion META.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
"runtime" : {
"requires" : {
"Carp" : "0",
"Data::Dumper" : "0",
"perl" : "5.008"
}
}
Expand Down
1 change: 0 additions & 1 deletion META.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ provides:
version: v1.0.8
requires:
Carp: '0'
Data::Dumper: '0'
perl: '5.008'
resources:
bugtracker: https://github.com/guillaumeaubert/Lingua-TH-Numbers/issues
Expand Down
15 changes: 7 additions & 8 deletions Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,16 @@ require 5.008;
use ExtUtils::MakeMaker;
WriteMakefile
(
'INSTALLDIRS' => 'site',
'PL_FILES' => {},
'NAME' => 'Lingua::TH::Numbers',
'VERSION_FROM' => 'lib/Lingua/TH/Numbers.pm',
'PREREQ_PM' => {
'Carp' => 0,
'Data::Dumper' => 0,
'Test::Exception' => 0,
'Test::FailWarnings' => 0,
'Test::More' => '0.94'
'Test::More' => '0.94',
'Test::Exception' => 0,
'Carp' => 0
},
'INSTALLDIRS' => 'site',
'EXE_FILES' => [],
'PL_FILES' => {}
'VERSION_FROM' => 'lib/Lingua/TH/Numbers.pm',
'EXE_FILES' => []
)
;
1 change: 0 additions & 1 deletion lib/Lingua/TH/Numbers.pm
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ use warnings;
use utf8;

use Carp;
#use Data::Dumper;


=head1 NAME
Expand Down

0 comments on commit bf4365b

Please sign in to comment.