line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Dist::Zilla::PluginBundle::MANWAR; |
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
$Dist::Zilla::PluginBundle::MANWAR::VERSION = '0.08'; |
4
|
|
|
|
|
|
|
$Dist::Zilla::PluginBundle::MANWAR::AUTHORITY = 'cpan:MANWAR'; |
5
|
|
|
|
|
|
|
|
6
|
3
|
|
|
3
|
|
51567
|
use Moose; |
|
3
|
|
|
|
|
1204673
|
|
|
3
|
|
|
|
|
27
|
|
7
|
|
|
|
|
|
|
with 'Dist::Zilla::Role::PluginBundle::Easy'; |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
# ABSTRACT: Dist::Zilla plugins for manwar. |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
sub configure { |
12
|
0
|
|
|
0
|
0
|
|
my ($self) = @_; |
13
|
|
|
|
|
|
|
|
14
|
0
|
|
|
|
|
|
$self->add_plugins(qw( |
15
|
|
|
|
|
|
|
PkgVersion |
16
|
|
|
|
|
|
|
PodVersion |
17
|
|
|
|
|
|
|
MinimumPerlFast |
18
|
|
|
|
|
|
|
GatherDir |
19
|
|
|
|
|
|
|
AutoPrereqs |
20
|
|
|
|
|
|
|
MetaJSON |
21
|
|
|
|
|
|
|
MetaYAML |
22
|
|
|
|
|
|
|
MakeMaker |
23
|
|
|
|
|
|
|
Manifest |
24
|
|
|
|
|
|
|
GithubMeta |
25
|
|
|
|
|
|
|
)); |
26
|
|
|
|
|
|
|
|
27
|
0
|
|
|
|
|
|
$self->add_plugins(qw( |
28
|
|
|
|
|
|
|
PodSyntaxTests |
29
|
|
|
|
|
|
|
)); |
30
|
|
|
|
|
|
|
|
31
|
0
|
|
|
|
|
|
$self->add_plugins([ |
32
|
|
|
|
|
|
|
'MetaProvides::Package' => { |
33
|
|
|
|
|
|
|
inherit_version => 0, |
34
|
|
|
|
|
|
|
inherit_missing => 0, |
35
|
|
|
|
|
|
|
meta_noindex => 1, |
36
|
|
|
|
|
|
|
} |
37
|
|
|
|
|
|
|
]); |
38
|
|
|
|
|
|
|
|
39
|
0
|
|
|
|
|
|
$self->add_plugins([ |
40
|
|
|
|
|
|
|
'PruneFiles' => { |
41
|
|
|
|
|
|
|
filenames => [ qw(dist.ini) ] |
42
|
|
|
|
|
|
|
} |
43
|
|
|
|
|
|
|
]); |
44
|
|
|
|
|
|
|
} |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
__PACKAGE__->meta->make_immutable; |
47
|
|
|
|
|
|
|
|
48
|
3
|
|
|
3
|
|
20519
|
no Moose; |
|
3
|
|
|
|
|
7
|
|
|
3
|
|
|
|
|
17
|
|
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
1; |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
__END__ |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
=pod |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
=encoding UTF-8 |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
=head1 NAME |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
Dist::Zilla::PluginBundle::MANWAR - Dist::Zilla plugins for manwar. |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
=head1 VERSION |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
version 0.08 |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
=head1 DESCRIPTION |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
This is the plugin bundle that MANWAR uses. It's equivalent to: |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
[PkgVersion] |
71
|
|
|
|
|
|
|
[PodVersion] |
72
|
|
|
|
|
|
|
[MinimumPerlFast] |
73
|
|
|
|
|
|
|
[GatherDir] |
74
|
|
|
|
|
|
|
[AutoPrereqs] |
75
|
|
|
|
|
|
|
[MetaYAML] |
76
|
|
|
|
|
|
|
[MetaJSON] |
77
|
|
|
|
|
|
|
[MakeMaker] |
78
|
|
|
|
|
|
|
[Manifest] |
79
|
|
|
|
|
|
|
[GithubMeta] |
80
|
|
|
|
|
|
|
[PodSyntaxTests] |
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 |