Dist-Zilla-PluginBundle-Author-KENTNL

 view release on metacpan or  search on metacpan

lib/Dist/Zilla/PluginBundle/Author/KENTNL.pm  view on Meta::CPAN

our $VERSION = '2.025021';

our $AUTHORITY = 'cpan:KENTNL'; # AUTHORITY

use Moose qw( with has );
use Moose::Util::TypeConstraints qw(enum);
use Dist::Zilla::Util::CurrentCmd qw( current_cmd );

with 'Dist::Zilla::Role::PluginBundle';
with 'Dist::Zilla::Role::PluginBundle::PluginRemover';
with 'Dist::Zilla::Role::PluginBundle::Config::Slicer';
with 'Dist::Zilla::Role::BundleDeps';

use namespace::autoclean;


























sub mvp_multivalue_args { return qw( auto_prereqs_skip copy_files ) }

sub mvp_aliases {
  return {
    'bumpversions' => 'bump_versions',
    'srcreadme'    => 'src_readme',
    'copyfiles'    => 'copy_files',
  };
}











has 'plugins' => ( 'is' => 'ro' =>, 'isa' => 'ArrayRef', 'init_arg' => undef, 'lazy' => 1, 'default' => sub { [] } );













has 'normal_form' => ( 'is' => ro =>, 'isa' => 'Str', lazy => 1, default => sub { 'numify' } );











has 'mantissa' => (
  'is'      => ro =>,
  'isa'     => 'Int',
  'lazy'    => 1,
  'default' => sub {
    return 6;
  },
);



















has 'git_versions' => ( is => 'ro', isa => 'Any', lazy => 1, default => sub { undef } );









( run in 1.684 second using v1.01-cache-2.11-cpan-f56aa216473 )