| Dist-Zilla documentation | Contained in the Dist-Zilla distribution. |
Dist::Zilla::PluginBundle::Basic - the basic plugins to maintain and release CPAN dists
version 4.200008
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:
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::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__