File Coverage

lib/Dist/Zilla/Plugin/Code.pm
Criterion Covered Total %
statement 8 8 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 11 11 100.0


line stmt bran cond sub pod time code
1             package Dist::Zilla::Plugin::Code;
2              
3 1     1   1630 use 5.006;
  1         4  
4 1     1   5 use strict;
  1         1  
  1         20  
5 1     1   4 use warnings;
  1         1  
  1         50  
6              
7             our $VERSION = '0.006';
8              
9             1;
10              
11             __END__
12              
13             =pod
14              
15             =encoding UTF-8
16              
17             =head1 NAME
18              
19             Dist::Zilla::Plugin::Code - dynamically create plugins from a bundle
20              
21             =head1 VERSION
22              
23             Version 0.006
24              
25             =head1 DESCRIPTION
26              
27             =over 4
28              
29             =item L<Dist::Zilla::Plugin::Code::AfterBuild>
30              
31             something that runs after building is mostly complete
32              
33             =item L<Dist::Zilla::Plugin::Code::AfterRelease>
34              
35             something that runs after release is mostly complete
36              
37             =item L<Dist::Zilla::Plugin::Code::BeforeArchive>
38              
39             something that runs before the archive file is built
40              
41             =item L<Dist::Zilla::Plugin::Code::BeforeBuild>
42              
43             something that runs before building really begins
44              
45             =item L<Dist::Zilla::Plugin::Code::BeforeRelease>
46              
47             something that runs before release really begins
48              
49             =item L<Dist::Zilla::Plugin::Code::BuildRunner>
50              
51             something used as a delegating agent during 'dzil run'
52              
53             =item L<Dist::Zilla::Plugin::Code::EncodingProvider>
54              
55             something that sets a files' encoding
56              
57             =item L<Dist::Zilla::Plugin::Code::FileFinder>
58              
59             something that finds files within the distribution
60              
61             =item L<Dist::Zilla::Plugin::Code::FileGatherer>
62              
63             something that gathers files into the distribution
64              
65             =item L<Dist::Zilla::Plugin::Code::FileMunger>
66              
67             something that munges files within the distribution
68              
69             =item L<Dist::Zilla::Plugin::Code::FilePruner>
70              
71             something that prunes files from the distribution
72              
73             =item L<Dist::Zilla::Plugin::Code::Initialization>
74              
75             something that runs when plugins are initialized
76              
77             =item L<Dist::Zilla::Plugin::Code::InstallTool>
78              
79             something that creates an install program for a dist
80              
81             =item L<Dist::Zilla::Plugin::Code::LicenseProvider>
82              
83             something that offers a license for a dist
84              
85             =item L<Dist::Zilla::Plugin::Code::MetaProvider>
86              
87             something that provides data to merge into the distribution metadata
88              
89             =item L<Dist::Zilla::Plugin::Code::NameProvider>
90              
91             something that provides a name for the dist
92              
93             =item L<Dist::Zilla::Plugin::Code::PrereqSource>
94              
95             something that registers prereqs of the dist
96              
97             =item L<Dist::Zilla::Plugin::Code::ReleaseStatusProvider>
98              
99             something that provides a release status for the dist
100              
101             =item L<Dist::Zilla::Plugin::Code::Releaser>
102              
103             something that makes a release of the dist
104              
105             =item L<Dist::Zilla::Plugin::Code::TestRunner>
106              
107             something that tests the dist
108              
109             =item L<Dist::Zilla::Plugin::Code::VersionProvider>
110              
111             something that provides a version number for the dist
112              
113             =item L<Dist::Zilla::PluginBundle::Code>
114              
115             a dynamic bundle
116              
117             =back
118              
119             =head1 SUPPORT
120              
121             =head2 Bugs / Feature Requests
122              
123             Please report any bugs or feature requests through the issue tracker
124             at L<https://github.com/skirmess/Dist-Zilla-Plugin-Code/issues>.
125             You will be notified automatically of any progress on your issue.
126              
127             =head2 Source Code
128              
129             This is open source software. The code repository is available for
130             public review and contribution under the terms of the license.
131              
132             L<https://github.com/skirmess/Dist-Zilla-Plugin-Code>
133              
134             git clone https://github.com/skirmess/Dist-Zilla-Plugin-Code.git
135              
136             =head1 AUTHOR
137              
138             Sven Kirmess <sven.kirmess@kzone.ch>
139              
140             =head1 COPYRIGHT AND LICENSE
141              
142             This software is Copyright (c) 2020-2021 by Sven Kirmess.
143              
144             This is free software, licensed under:
145              
146             The (two-clause) FreeBSD License
147              
148             =head1 SEE ALSO
149              
150             L<Dist::Zilla>
151              
152             =cut
153              
154             # vim: ts=4 sts=4 sw=4 et: syntax=perl