Dist::Zilla::PluginBundle::Basic - the basic plugins to maintain and release CPAN dists


Dist-Zilla documentation Contained in the Dist-Zilla distribution.

Index


Code Index:

NAME

Top

Dist::Zilla::PluginBundle::Basic - the basic plugins to maintain and release CPAN dists

VERSION

Top

version 4.200008

DESCRIPTION

Top

This plugin is meant to be a basic "first step" bundle for using Dist::Zilla. It won't munge any of your code, but will generate a Makefile.PL and allows easy, reliable releasing of distributions.

It includes the following plugins with their default configuration:

AUTHOR

Top

Ricardo SIGNES <rjbs@cpan.org>

COPYRIGHT AND LICENSE

Top


Dist-Zilla documentation Contained in the Dist-Zilla distribution.

package Dist::Zilla::PluginBundle::Basic;
BEGIN {
  $Dist::Zilla::PluginBundle::Basic::VERSION = '4.200008';
}
# ABSTRACT: the basic plugins to maintain and release CPAN dists
use Moose;
with 'Dist::Zilla::Role::PluginBundle::Easy';

sub configure {
  my ($self) = @_;

  $self->add_plugins(qw(
    GatherDir
    PruneCruft
    ManifestSkip
    MetaYAML
    License
    Readme
    ExtraTests
    ExecDir
    ShareDir

    MakeMaker
    Manifest

    TestRelease
    ConfirmRelease
    UploadToCPAN
  ));
}

__PACKAGE__->meta->make_immutable;
no Moose;
1;



__END__