File Coverage

blib/lib/Dist/Zilla/Role/AfterRelease.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 Dist::Zilla::Role::AfterRelease 6.037;
2             # ABSTRACT: something that runs after release is mostly complete
3              
4 5     5   770513 use Moose::Role;
  5         5556  
  5         67  
5             with 'Dist::Zilla::Role::Plugin';
6              
7 5     5   30274 use Dist::Zilla::Pragmas;
  5         12  
  5         49  
8              
9 5     5   37 use namespace::autoclean;
  5         9  
  5         46  
10              
11             #pod =head1 DESCRIPTION
12             #pod
13             #pod Plugins implementing this role have their C<after_release> method called once
14             #pod the release is done. The archive filename, if one was built, is passed as the
15             #pod sole argument.
16             #pod
17             #pod =cut
18              
19             requires 'after_release';
20              
21             1;
22              
23             __END__
24              
25             =pod
26              
27             =encoding UTF-8
28              
29             =head1 NAME
30              
31             Dist::Zilla::Role::AfterRelease - something that runs after release is mostly complete
32              
33             =head1 VERSION
34              
35             version 6.037
36              
37             =head1 DESCRIPTION
38              
39             Plugins implementing this role have their C<after_release> method called once
40             the release is done. The archive filename, if one was built, is passed as the
41             sole argument.
42              
43             =head1 PERL VERSION
44              
45             This module should work on any version of perl still receiving updates from
46             the Perl 5 Porters. This means it should work on any version of perl
47             released in the last two to three years. (That is, if the most recently
48             released version is v5.40, then this module should work on both v5.40 and
49             v5.38.)
50              
51             Although it may work on older versions of perl, no guarantee is made that the
52             minimum required version will not be increased. The version may be increased
53             for any reason, and there is no promise that patches will be accepted to
54             lower the minimum required perl.
55              
56             =head1 AUTHOR
57              
58             Ricardo SIGNES 😏 <cpan@semiotic.systems>
59              
60             =head1 COPYRIGHT AND LICENSE
61              
62             This software is copyright (c) 2026 by Ricardo SIGNES.
63              
64             This is free software; you can redistribute it and/or modify it under
65             the same terms as the Perl 5 programming language system itself.
66              
67             =cut