Skip to content

Commit

Permalink
Build results of 7229903 (on master)
Browse files Browse the repository at this point in the history
  • Loading branch information
kentfredric committed May 6, 2015
1 parent c6dbbbc commit 5def83c
Show file tree
Hide file tree
Showing 8 changed files with 30 additions and 14 deletions.
2 changes: 1 addition & 1 deletion Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Release history for Dist-Zilla-Plugin-RemovePrereqs-Provided

0.001000 2015-05-06T00:29:04Z dae4713
0.001000 2015-05-06T02:03:02Z 7229903
- First version.

15 changes: 13 additions & 2 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@
"test" : {
"recommends" : {
"CPAN::Meta" : "2.120900",
"Dist::Zilla::Plugin::MetaProvides::Package" : "0",
"ExtUtils::MakeMaker" : "7.00",
"Test::More" : "0.99"
},
Expand All @@ -119,8 +120,7 @@
"File::Spec" : "0",
"Test::DZil" : "0",
"Test::More" : "0.89",
"perl" : "5.006",
"recommended" : "0"
"perl" : "5.006"
}
}
},
Expand Down Expand Up @@ -754,6 +754,17 @@
"name" : "@Author::KENTNL/::Role::BundleDeps",
"version" : "5.034"
},
{
"class" : "Dist::Zilla::Plugin::Prereqs",
"config" : {
"Dist::Zilla::Plugin::Prereqs" : {
"phase" : "test",
"type" : "recommends"
}
},
"name" : "TestRecommends",
"version" : "5.034"
},
{
"class" : "Dist::Zilla::Plugin::FinderCode",
"name" : ":InstallModules",
Expand Down
9 changes: 8 additions & 1 deletion META.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ build_requires:
Test::DZil: '0'
Test::More: '0.89'
perl: '5.006'
recommended: '0'
configure_requires:
ExtUtils::MakeMaker: '0'
perl: '5.006'
Expand Down Expand Up @@ -509,6 +508,14 @@ x_Dist_Zilla:
type: requires
name: '@Author::KENTNL/::Role::BundleDeps'
version: '5.034'
-
class: Dist::Zilla::Plugin::Prereqs
config:
Dist::Zilla::Plugin::Prereqs:
phase: test
type: recommends
name: TestRecommends
version: '5.034'
-
class: Dist::Zilla::Plugin::FinderCode
name: ':InstallModules'
Expand Down
4 changes: 1 addition & 3 deletions Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,7 @@ my %WriteMakefileArgs = (
"ExtUtils::MakeMaker" => 0,
"File::Spec" => 0,
"Test::DZil" => 0,
"Test::More" => "0.89",
"recommended" => 0
"Test::More" => "0.89"
},
"VERSION" => "0.001000",
"test" => {
Expand All @@ -54,7 +53,6 @@ my %FallbackPrereqs = (
"Moose::Util::TypeConstraints" => 0,
"Test::DZil" => 0,
"Test::More" => "0.89",
"recommended" => 0,
"strict" => 0,
"warnings" => 0
);
Expand Down
3 changes: 3 additions & 0 deletions dist.ini
Original file line number Diff line number Diff line change
Expand Up @@ -221,3 +221,6 @@ Dist::Zilla::Plugin::Test::ReportPrereqs = 0
Dist::Zilla::Plugin::TestRelease = 0
Dist::Zilla::Plugin::Twitter = 0
Dist::Zilla::Plugin::UploadToCPAN = 0

[Prereqs / TestRecommends]
Dist::Zilla::Plugin::MetaProvides::Package = 0
1 change: 0 additions & 1 deletion misc/built_with.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@
"Test::More" : "1.301001_108",
"Test::Pod" : "1.48",
"Test::Pod::Coverage" : "1.10",
"recommended" : "0.002",
"strict" : "1.09",
"warnings" : "1.31"
},
Expand Down
4 changes: 2 additions & 2 deletions t/00-report-prereqs.dd
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ do { my $x = {
'test' => {
'recommends' => {
'CPAN::Meta' => '2.120900',
'Dist::Zilla::Plugin::MetaProvides::Package' => '0',
'ExtUtils::MakeMaker' => '7.00',
'Test::More' => '0.99'
},
Expand All @@ -104,8 +105,7 @@ do { my $x = {
'File::Spec' => '0',
'Test::DZil' => '0',
'Test::More' => '0.89',
'perl' => '5.006',
'recommended' => '0'
'perl' => '5.006'
}
}
};
Expand Down
6 changes: 2 additions & 4 deletions t/01_basic.t
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,9 @@ use warnings;
use Test::More;

# ABSTRACT: A basic test
use recommended "Dist::Zilla::Plugin::MetaProvides::Package";

BEGIN {
plan skip_all => "Requires [MetaProvides::Package]"
unless recommended->has("Dist::Zilla::Plugin::MetaProvides::Package");
my $package = "Dist::Zilla::Plugin::MetaProvides::Package";
eval "require $package; 1" or plan skip_all => "Requires $package";
}

use Dist::Zilla::Plugin::Prereqs;
Expand Down

0 comments on commit 5def83c

Please sign in to comment.