| Dist-Zilla documentation | Contained in the Dist-Zilla distribution. |
Dist::Zilla::PluginBundle::Classic - the classic (old) default configuration for Dist::Zilla
version 4.200008
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:
Ricardo SIGNES <rjbs@cpan.org>
This software is copyright (c) 2011 by Ricardo SIGNES.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
| 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__