Dist::Zilla::PluginBundle::Classic - the classic (old) default configuration for Dist::Zilla


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

Index


Code Index:

NAME

Top

Dist::Zilla::PluginBundle::Classic - the classic (old) default configuration for Dist::Zilla

VERSION

Top

version 4.200008

DESCRIPTION

Top

This bundle is more or less the original configuration bundled with Dist::Zilla. More than likely, you'd rather be using @Basic or a more complex bundle. This one will muck around with your code by adding $VERSION declarations and will mess with you Pod by adding a =head1 VERSION section, but it won't get you a lot of more useful features like autoversioning, autoprereqs, or Pod::Weaver.

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::Classic;
BEGIN {
  $Dist::Zilla::PluginBundle::Classic::VERSION = '4.200008';
}
# ABSTRACT: the classic (old) default configuration for Dist::Zilla
use Moose;
with 'Dist::Zilla::Role::PluginBundle::Easy';

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

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

    MakeMaker
    Manifest

    ConfirmRelease
    UploadToCPAN
  ));
}

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



__END__