Skip to content

Commit

Permalink
allow removing plugins and slicing their configs
Browse files Browse the repository at this point in the history
This is needed for dzilification of Test::Deep.
  • Loading branch information
karenetheridge authored and rjbs committed Apr 22, 2018
1 parent 370b98f commit 693f34c
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion lib/Dist/Zilla/PluginBundle/RJBS.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@ package Dist::Zilla::PluginBundle::RJBS;

use Moose;
use Dist::Zilla 2.100922; # TestRelease
with 'Dist::Zilla::Role::PluginBundle::Easy';
with
'Dist::Zilla::Role::PluginBundle::Easy',
'Dist::Zilla::Role::PluginBundle::PluginRemover' => { -version => '0.103' },
'Dist::Zilla::Role::PluginBundle::Config::Slicer';

=head1 DESCRIPTION
Expand Down Expand Up @@ -48,6 +51,9 @@ C<manual_version> argument is given, AutoVersion is omitted.
If the C<github_issues> argument is given, and true, the F<META.*> files will
point to GitHub issues for the dist's bugtracker.
This bundle makes use of L<Dist::Zilla::Role::PluginBundle::PluginRemover> and
L<Dist::Zilla::Role::PluginBundle::Config::Slicer> to allow further customization.
=cut

use Dist::Zilla::PluginBundle::Basic;
Expand Down

0 comments on commit 693f34c

Please sign in to comment.