File Coverage

blib/lib/Bundle/Padre/Plugin.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Bundle::Padre::Plugin;
2              
3 1     1   22684 use 5.0106;
  1         4  
  1         51  
4 1     1   6 use strict;
  1         2  
  1         33  
5 1     1   4 use warnings FATAL => 'all';
  1         10  
  1         91  
6              
7             =head1 NAME
8              
9             Bundle::Padre::Plugin - A Bundle of Padre::Plugins currently on CPAN.
10              
11             =head1 VERSION
12              
13             Version 0.011
14              
15             =cut
16              
17             our $VERSION = '0.011';
18              
19              
20             =head1 SYNOPSIS
21              
22             This module is intended to allow for the easy installation of all
23             currently-available Padre::Plugin::* modules on CPAN. (2013-10-28)
24              
25              
26             =head1 CONTENTS
27              
28             Padre::Plugin
29              
30             Padre::Plugin::Alarm
31              
32             Padre::Plugin::Autodia
33              
34             Padre::Plugin::Autoformat
35              
36             Padre::Plugin::CSS
37              
38             Padre::Plugin::CSSComb
39              
40             Padre::Plugin::Catalyst
41              
42             Padre::Plugin::ClassSniff
43              
44             Padre::Plugin::CommandLine
45              
46             Padre::Plugin::Cookbook
47              
48             Padre::Plugin::DataWalker
49              
50             Padre::Plugin::Debugger
51              
52             Padre::Plugin::Devel
53              
54             Padre::Plugin::DistZilla
55              
56             Padre::Plugin::Ecliptic
57              
58             Padre::Plugin::Encode
59              
60             Padre::Plugin::Encrypt
61              
62             Padre::Plugin::Filter
63              
64             Padre::Plugin::FormBuilder
65              
66             Padre::Plugin::Git
67              
68             Padre::Plugin::HG
69              
70             Padre::Plugin::HTML
71              
72             Padre::Plugin::InstallPARDist
73              
74             Padre::Plugin::JavaScript
75              
76             Padre::Plugin::Kate
77              
78             Padre::Plugin::LaTeX
79              
80             Padre::Plugin::Mojolicious
81              
82             Padre::Plugin::Moose
83              
84             Padre::Plugin::NYTProf
85              
86             Padre::Plugin::Nopaste
87              
88             Padre::Plugin::PAR
89              
90             Padre::Plugin::PDL
91              
92             Padre::Plugin::PHP
93              
94             Padre::Plugin::Parrot
95              
96             Padre::Plugin::ParserTool
97              
98             Padre::Plugin::Perl6
99              
100             Padre::Plugin::PerlCritic
101              
102             Padre::Plugin::PerlTidy
103              
104             Padre::Plugin::Plack
105              
106             Padre::Plugin::PopularityContest
107              
108             Padre::Plugin::REPL
109              
110             Padre::Plugin::RegexExplain
111              
112             Padre::Plugin::RunPerlExternal
113              
114             Padre::Plugin::SVN
115              
116             Padre::Plugin::Shell
117              
118             Padre::Plugin::ShellCommand
119              
120             Padre::Plugin::ShellScript
121              
122             Padre::Plugin::Shopify
123              
124             Padre::Plugin::Snippet
125              
126             Padre::Plugin::SpellCheck
127              
128             Padre::Plugin::Swarm
129              
130             Padre::Plugin::Template
131              
132             Padre::Plugin::Vi
133              
134             Padre::Plugin::ViewInBrowser
135              
136             Padre::Plugin::WebGUI
137              
138             Padre::Plugin::WxWidgets
139              
140             Padre::Plugin::XML
141              
142             Padre::Plugin::XS
143              
144             Padre::Plugin::YAML
145              
146             Module::Install::PadrePlugin
147              
148             =head1 AUTHOR
149              
150             Albert Croft, C<< >>
151              
152             =head1 BUGS
153              
154             Please report any bugs or feature requests to C, or through
155             the web interface at L. I will be notified, and then you'll
156             automatically be notified of progress on your bug as I make changes.
157              
158              
159             =head1 SUPPORT
160              
161             You can find documentation for this module with the perldoc command.
162              
163             perldoc Bundle::Padre::Plugin
164              
165              
166             You can also look for information at:
167              
168             =over 4
169              
170             =item * RT: CPAN's request tracker (report bugs here)
171              
172             L
173              
174             =item * AnnoCPAN: Annotated CPAN documentation
175              
176             L
177              
178             =item * CPAN Ratings
179              
180             L
181              
182             =item * Search CPAN
183              
184             L
185              
186             =back
187              
188              
189             =head1 ACKNOWLEDGEMENTS
190              
191              
192             =head1 LICENSE AND COPYRIGHT
193              
194             Copyright 2013 Albert Croft.
195              
196             This program is free software; you can redistribute it and/or modify it
197             under the terms of the the Artistic License (2.0). You may obtain a
198             copy of the full license at:
199              
200             L
201              
202             Any use, modification, and distribution of the Standard or Modified
203             Versions is governed by this Artistic License. By using, modifying or
204             distributing the Package, you accept this license. Do not use, modify,
205             or distribute the Package, if you do not accept this license.
206              
207             If your Modified Version has been derived from a Modified Version made
208             by someone other than you, you are nevertheless required to ensure that
209             your Modified Version complies with the requirements of this license.
210              
211             This license does not grant you the right to use any trademark, service
212             mark, tradename, or logo of the Copyright Holder.
213              
214             This license includes the non-exclusive, worldwide, free-of-charge
215             patent license to make, have made, use, offer to sell, sell, import and
216             otherwise transfer the Package with respect to any patent claims
217             licensable by the Copyright Holder that are necessarily infringed by the
218             Package. If you institute patent litigation (including a cross-claim or
219             counterclaim) against any party alleging that the Package constitutes
220             direct or contributory patent infringement, then this Artistic License
221             to you shall terminate on the date that such litigation is filed.
222              
223             Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER
224             AND CONTRIBUTORS "AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.
225             THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
226             PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY
227             YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT HOLDER OR
228             CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, OR
229             CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THE PACKAGE,
230             EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
231              
232              
233             =cut
234              
235             1; # End of Bundle::Padre::Plugin