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