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