Skip to content

Commit

Permalink
Build results of 48557a0 (on master)
Browse files Browse the repository at this point in the history
  • Loading branch information
kentfredric committed Mar 4, 2017
1 parent 8b30783 commit f915af0
Show file tree
Hide file tree
Showing 9 changed files with 23 additions and 9 deletions.
6 changes: 5 additions & 1 deletion Changes
Original file line number Diff line number Diff line change
@@ -1,15 +1,19 @@
Release history for Dist-Zilla-Plugin-Author-KENTNL-CONTRIBUTING

0.001006 2017-03-04T01:17:27Z 542a826
0.001006 2017-03-04T01:21:44Z 48557a0
[Bugfix]
- Avoid test failures on 5.26 w/ -Ddefault_inc_excludes_dot
- Closes https://github.com/kentnl/Dist-Zilla-Plugin-Author-KENTNL-CONTRIBUTING/issues/2

[Dependencies::Stats]
- Dependencies changed since 0.001005, see misc/*.deps* for details
- develop: +1 ↑1 (suggests: ↑1)
- runtime: -1
- test: ↓1

[Internals]
- Drop ConfigDumper

0.001005 2015-11-14T04:44:40Z 09c7edb
- switched from [GenerateFile::ShareDir] to [GenerateFile::FromShareDir], closes #1

Expand Down
1 change: 0 additions & 1 deletion META.json
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,6 @@
},
"requires" : {
"Dist::Zilla::Plugin::GenerateFile::FromShareDir" : "0.006",
"Dist::Zilla::Util::ConfigDumper" : "0",
"Moose" : "0",
"Moose::Util::TypeConstraints" : "0",
"perl" : "5.006",
Expand Down
1 change: 0 additions & 1 deletion META.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ recommends:
Moose: '2.000'
requires:
Dist::Zilla::Plugin::GenerateFile::FromShareDir: '0.006'
Dist::Zilla::Util::ConfigDumper: '0'
Moose: '0'
Moose::Util::TypeConstraints: '0'
perl: '5.006'
Expand Down
2 changes: 0 additions & 2 deletions Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ my %WriteMakefileArgs = (
"NAME" => "Dist::Zilla::Plugin::Author::KENTNL::CONTRIBUTING",
"PREREQ_PM" => {
"Dist::Zilla::Plugin::GenerateFile::FromShareDir" => "0.006",
"Dist::Zilla::Util::ConfigDumper" => 0,
"Moose" => 0,
"Moose::Util::TypeConstraints" => 0,
"strict" => 0,
Expand All @@ -45,7 +44,6 @@ my %WriteMakefileArgs = (

my %FallbackPrereqs = (
"Dist::Zilla::Plugin::GenerateFile::FromShareDir" => "0.006",
"Dist::Zilla::Util::ConfigDumper" => 0,
"ExtUtils::MakeMaker" => 0,
"File::Spec" => 0,
"Moose" => 0,
Expand Down
14 changes: 12 additions & 2 deletions lib/Dist/Zilla/Plugin/Author/KENTNL/CONTRIBUTING.pm
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ my $valid_versions = { map { $_ => 1 } qw( 0.1 ) };

use Moose qw( has around extends );
use Moose::Util::TypeConstraints qw( enum );
use Dist::Zilla::Util::ConfigDumper qw( config_dumper );
use Dist::Zilla::Plugin::GenerateFile::FromShareDir 0.006;

extends 'Dist::Zilla::Plugin::GenerateFile::FromShareDir';
Expand Down Expand Up @@ -62,7 +61,18 @@ has '+phase' => (
default => sub { 'build' },
);

around dump_config => config_dumper( __PACKAGE__, qw( document_version ), );
around dump_config => sub {
my ( $orig, $self, @args ) = @_;
my $config = $self->$orig(@args);
my $localconf = $config->{ +__PACKAGE__ } = {};

$localconf->{document_version} = $self->document_version;

$localconf->{ q[$] . __PACKAGE__ . '::VERSION' } = $VERSION
unless __PACKAGE__ eq ref $self;

return $config;
};

__PACKAGE__->meta->make_immutable;
no Moose;
Expand Down
3 changes: 3 additions & 0 deletions misc/Changes.deps
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ This file contains changes in REQUIRED dependencies for standard CPAN phases (co
[Changed / test requires]
- Test::More 0.89 → 0

[Removed / runtime requires]
- Dist::Zilla::Util::ConfigDumper

0.001005 2015-11-14T04:44:40Z
[Added / runtime requires]
- Dist::Zilla::Plugin::GenerateFile::FromShareDir 0.006
Expand Down
3 changes: 3 additions & 0 deletions misc/Changes.deps.all
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ This file contains ALL changes in dependencies in both REQUIRED / OPTIONAL depen
[Changed / test requires]
- Test::More 0.89 → 0

[Removed / runtime requires]
- Dist::Zilla::Util::ConfigDumper

0.001005 2015-11-14T04:44:40Z
[Added / develop requires]
- Dist::Zilla::Plugin::GenerateFile::FromShareDir 0.006
Expand Down
1 change: 0 additions & 1 deletion misc/built_with.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@
"Dist::Zilla::Plugin::Twitter" : "0.026",
"Dist::Zilla::Plugin::UploadToCPAN" : "6.008",
"Dist::Zilla::PluginBundle::Author::KENTNL" : "2.025020",
"Dist::Zilla::Util::ConfigDumper" : "0.003007",
"English" : "1.10",
"ExtUtils::MakeMaker" : "7.24",
"File::ShareDir::Install" : "0.11",
Expand Down
1 change: 0 additions & 1 deletion t/00-report-prereqs.dd
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,6 @@ do { my $x = {
},
'requires' => {
'Dist::Zilla::Plugin::GenerateFile::FromShareDir' => '0.006',
'Dist::Zilla::Util::ConfigDumper' => '0',
'Moose' => '0',
'Moose::Util::TypeConstraints' => '0',
'perl' => '5.006',
Expand Down

0 comments on commit f915af0

Please sign in to comment.