Fixing bugs
[p5sagit/Oyster.git] / .build / spEUsgyear / lib / Dist / Zilla / PluginBundle / Oyster.pm
CommitLineData
e74d6d9c 1package Dist::Zilla::PluginBundle::Oyster;
2BEGIN {
3 $Dist::Zilla::PluginBundle::Basic::VERSION = '0.1';
4}
5# ABSTRACT: the basic plugins to maintain and release CPAN dists
6use Moose;
7with 'Dist::Zilla::Role::PluginBundle::Easy';
8
9sub configure {
10 my ($self) = @_;
11
12 $self->add_plugins(qw(
13 GatherDir
14 PruneCruft
15 ManifestSkip
16 MetaYAML
17 License
18 Readme
19 ExtraTests
20 ExecDir
21 ShareDir
22
23 MakeMaker
24 Manifest
25
26 TestRelease
27 ConfirmRelease
28 ));
29}
30
31__PACKAGE__->meta->make_immutable;
32no Moose;
331;
34
35
36=pod
37
38=head1 NAME
39
40Dist::Zilla::PluginBundle::Oyster - the basic plugins to maintain and release to Oyster
41
42=head1 VERSION
43
44version 4.102344
45
46=head1 DESCRIPTION
47
48This plugin is meant to be a basic "first step" bundle for using Dist::Zilla.
49It won't munge any of your code, but will generate a F<Makefile.PL> and allows
50easy, reliable releasing of distributions.
51
52It includes the following plugins with their default configuration:
53
54=over 4
55
56=item *
57
58L<Dist::Zilla::Plugin::GatherDir>
59
60=item *
61
62L<Dist::Zilla::Plugin::PruneCruft>
63
64=item *
65
66L<Dist::Zilla::Plugin::ManifestSkip>
67
68=item *
69
70L<Dist::Zilla::Plugin::MetaYAML>
71
72=item *
73
74L<Dist::Zilla::Plugin::License>
75
76=item *
77
78L<Dist::Zilla::Plugin::Readme>
79
80=item *
81
82L<Dist::Zilla::Plugin::ExtraTests>
83
84=item *
85
86L<Dist::Zilla::Plugin::ExecDir>
87
88=item *
89
90L<Dist::Zilla::Plugin::ShareDir>
91
92=item *
93
94L<Dist::Zilla::Plugin::MakeMaker>
95
96=item *
97
98L<Dist::Zilla::Plugin::Manifest>
99
100=item *
101
102L<Dist::Zilla::Plugin::TestRelease>
103
104=item *
105
106L<Dist::Zilla::Plugin::ConfirmRelease>
107
108=item *
109
110=back
111
112=head1 AUTHOR
113
114Ricardo SIGNES <rjbs@cpan.org>
115+ nwe.pm
116
117=head1 COPYRIGHT AND LICENSE
118
119This software is copyright (c) 2010 by Ricardo SIGNES.
120
121This is free software; you can redistribute it and/or modify it under
122the same terms as the Perl 5 programming language system itself.
123
124=cut
125
126
127__END__