Skip to content

Commit

Permalink
Updated to new version of CPAN::Meta::Converter.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kate Kirby committed Feb 28, 2012
1 parent 8a0fe26 commit 311c808
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 25 deletions.
14 changes: 7 additions & 7 deletions META.json
Expand Up @@ -5,7 +5,7 @@
"Kate Kirby <kate@cpan.org>"
],
"dynamic_config" : 1,
"generated_by" : "Module::Build version 0.4, CPAN::Meta::Converter version 2.113640",
"generated_by" : "Module::Build version 0.4, CPAN::Meta::Converter version 2.120530",
"license" : [
"artistic_1"
],
Expand All @@ -17,12 +17,12 @@
"prereqs" : {
"build" : {
"requires" : {
"Carp" : 0,
"Carp::Parse" : 0,
"Data::Dump" : 0,
"Test::Deep" : 0,
"Test::Exception" : 0,
"Test::More" : 0
"Carp" : "0",
"Carp::Parse" : "0",
"Data::Dump" : "0",
"Test::Deep" : "0",
"Test::Exception" : "0",
"Test::More" : "0"
}
},
"configure" : {
Expand Down
2 changes: 1 addition & 1 deletion META.yml
Expand Up @@ -13,7 +13,7 @@ build_requires:
configure_requires:
Module::Build: 0.4
dynamic_config: 1
generated_by: 'Module::Build version 0.4, CPAN::Meta::Converter version 2.113640'
generated_by: 'Module::Build version 0.4, CPAN::Meta::Converter version 2.120530'
license: artistic
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
Expand Down
34 changes: 17 additions & 17 deletions Makefile.PL
Expand Up @@ -3,21 +3,21 @@ require 5.006;
use ExtUtils::MakeMaker;
WriteMakefile
(
'NAME' => 'Carp::Parse::Redact',
'VERSION_FROM' => 'lib/Carp/Parse/Redact.pm',
'PREREQ_PM' => {
'Carp' => 0,
'Carp::Parse' => 0,
'Data::Dump' => 0,
'Test::Deep' => 0,
'Test::Exception' => 0,
'Test::More' => 0
},
'INSTALLDIRS' => 'site',
'EXE_FILES' => [],
'PL_FILES' => {},
'test' => {
'TESTS' => 't/*.t t/CallerInformation-Redacted/*.t'
}
)
'test' => {
'TESTS' => 't/*.t t/CallerInformation-Redacted/*.t'
},
'PL_FILES' => {},
'INSTALLDIRS' => 'site',
'NAME' => 'Carp::Parse::Redact',
'EXE_FILES' => [],
'VERSION_FROM' => 'lib/Carp/Parse/Redact.pm',
'PREREQ_PM' => {
'Test::More' => 0,
'Test::Exception' => 0,
'Data::Dump' => 0,
'Carp::Parse' => 0,
'Test::Deep' => 0,
'Carp' => 0
}
)
;

0 comments on commit 311c808

Please sign in to comment.