Dist-Zilla-Plugin-EnsurePrereqsInstalled
view release on metacpan or search on metacpan
t/lib/Breaks.pm view on Meta::CPAN
use strict;
use warnings;
package # hide from PAUSE! but see Dist::Zilla::Plugin::Breaks...
Breaks;
use Moose;
with 'Dist::Zilla::Role::MetaProvider';
use CPAN::Meta::Requirements;
has breaks => (
is => 'ro', isa => 'HashRef[Str]',
required => 1,
);
around BUILDARGS => sub {
my $orig = shift;
my $self = shift;
my $args = $self->$orig(@_);
return {
zilla => delete $args->{zilla},
plugin_name => delete $args->{plugin_name},
breaks => $args,
( run in 0.699 second using v1.01-cache-2.11-cpan-5f2e87ce722 )