File Coverage

blib/lib/Dist/Zilla/PluginBundle/MANWAR.pm
Criterion Covered Total %
statement 6 11 54.5
branch n/a
condition n/a
subroutine 2 3 66.6
pod 0 1 0.0
total 8 15 53.3


line stmt bran cond sub pod time code
1             package Dist::Zilla::PluginBundle::MANWAR;
2              
3             $Dist::Zilla::PluginBundle::MANWAR::VERSION = '0.07';
4              
5 3     3   60607 use Moose;
  3         925670  
  3         17  
6             with 'Dist::Zilla::Role::PluginBundle::Easy';
7              
8             # ABSTRACT: Dist::Zilla plugins for manwar.
9              
10             sub configure {
11 0     0 0   my ($self) = @_;
12              
13 0           $self->add_plugins(qw(
14             PkgVersion
15             PodVersion
16             MinimumPerlFast
17             GatherDir
18             AutoPrereqs
19             MetaJSON
20             MetaYAML
21             MakeMaker
22             Manifest
23             GithubMeta
24             ));
25              
26 0           $self->add_plugins(qw(
27             PodSyntaxTests
28             ));
29              
30 0           $self->add_plugins([
31             'MetaProvides::Package' => {
32             inherit_version => 0,
33             inherit_missing => 0,
34             meta_noindex => 1,
35             }
36             ]);
37              
38 0           $self->add_plugins([
39             'PruneFiles' => {
40             filenames => [ qw(dist.ini) ]
41             }
42             ]);
43             }
44              
45             __PACKAGE__->meta->make_immutable;
46              
47 3     3   14580 no Moose;
  3         5  
  3         13  
48              
49             1;
50              
51             __END__
52              
53             =pod
54              
55             =encoding UTF-8
56              
57             =head1 NAME
58              
59             Dist::Zilla::PluginBundle::MANWAR - Dist::Zilla plugins for manwar.
60              
61             =head1 VERSION
62              
63             version 0.07
64              
65             =head1 DESCRIPTION
66              
67             This is the plugin bundle that MANWAR uses. It's equivalent to:
68              
69             [PkgVersion]
70             [PodVersion]
71             [MinimumPerlFast]
72             [GatherDir]
73             [MetaYAML]
74             [MetaJSON]
75             [MakeMaker]
76             [Manifest]
77             [PodSyntaxTests]
78             [MetaJSON]
79             [MetaYAML]
80             [GithubMeta]
81              
82             [MetaProvides::Package]
83             inherit_version = 0
84             inherit_missing = 0
85             meta_noindex = 1
86              
87             [PruneFiles]
88             filenames = dist.ini
89              
90             =head1 AUTHOR
91              
92             Mohammad S Anwar, C<< <mohammad.anwar at yahoo.com> >>
93              
94             =head1 REPOSITORY
95              
96             L<https://github.com/manwar/Dist-Zilla-PluginBundle-MANWAR>
97              
98             =head1 BUGS
99              
100             Please report any bugs/feature requests to C<bug-dist-zilla-pluginbundle-manwar at rt.cpan.org>,
101             or through the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Dist-Zilla-PluginBundle-MANWAR>.
102             I will be notified, and then you'll automatically be notified of progress on your
103             bug as I make changes.
104              
105             =head1 SUPPORT
106              
107             You can find documentation for this module with the perldoc command.
108              
109             perldoc Dist::Zilla::PluginBundle::MANWAR
110              
111             You can also look for information at:
112              
113             =over 4
114              
115             =item * RT: CPAN's request tracker (report bugs here)
116              
117             L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Dist-Zilla-PluginBundle-MANWAR>
118              
119             =item * AnnoCPAN: Annotated CPAN documentation
120              
121             L<http://annocpan.org/dist/Dist-Zilla-PluginBundle-MANWAR>
122              
123             =item * CPAN Ratings
124              
125             L<http://cpanratings.perl.org/d/Dist-Zilla-PluginBundle-MANWAR>
126              
127             =item * Search CPAN
128              
129             L<http://search.cpan.org/dist/Dist-Zilla-PluginBundle-MANWAR/>
130              
131             =back
132              
133             =head1 LICENSE AND COPYRIGHT
134              
135             Copyright (C) 2016 Mohammad S Anwar.
136              
137             This program is free software; you can redistribute it and / or modify it under
138             the terms of the the Artistic License (2.0). You may obtain a copy of the full
139             license at:
140              
141             L<http://www.perlfoundation.org/artistic_license_2_0>
142              
143             Any use, modification, and distribution of the Standard or Modified Versions is
144             governed by this Artistic License.By using, modifying or distributing the Package,
145             you accept this license. Do not use, modify, or distribute the Package, if you do
146             not accept this license.
147              
148             If your Modified Version has been derived from a Modified Version made by someone
149             other than you,you are nevertheless required to ensure that your Modified Version
150             complies with the requirements of this license.
151              
152             This license does not grant you the right to use any trademark, service mark,
153             tradename, or logo of the Copyright Holder.
154              
155             This license includes the non-exclusive, worldwide, free-of-charge patent license
156             to make, have made, use, offer to sell, sell, import and otherwise transfer the
157             Package with respect to any patent claims licensable by the Copyright Holder that
158             are necessarily infringed by the Package. If you institute patent litigation
159             (including a cross-claim or counterclaim) against any party alleging that the
160             Package constitutes direct or contributory patent infringement,then this Artistic
161             License to you shall terminate on the date that such litigation is filed.
162              
163             Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER AND
164             CONTRIBUTORS "AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. THE IMPLIED
165             WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR
166             NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY YOUR LOCAL LAW. UNLESS
167             REQUIRED BY LAW, NO COPYRIGHT HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT,
168             INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE
169             OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
170              
171             =cut