line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Dist::Zilla::Role::AfterRelease 6.029; |
2
|
|
|
|
|
|
|
# ABSTRACT: something that runs after release is mostly complete |
3
|
|
|
|
|
|
|
|
4
|
5
|
|
|
5
|
|
4211
|
use Moose::Role; |
|
5
|
|
|
|
|
5225
|
|
|
5
|
|
|
|
|
45
|
|
5
|
|
|
|
|
|
|
with 'Dist::Zilla::Role::Plugin'; |
6
|
|
|
|
|
|
|
|
7
|
5
|
|
|
5
|
|
27850
|
use Dist::Zilla::Pragmas; |
|
5
|
|
|
|
|
14
|
|
|
5
|
|
|
|
|
42
|
|
8
|
|
|
|
|
|
|
|
9
|
5
|
|
|
5
|
|
41
|
use namespace::autoclean; |
|
5
|
|
|
|
|
13
|
|
|
5
|
|
|
|
|
37
|
|
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.029 |
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 released |
47
|
|
|
|
|
|
|
in the last two to three years. (That is, if the most recently released |
48
|
|
|
|
|
|
|
version is v5.40, then this module should work on both v5.40 and v5.38.) |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
Although it may work on older versions of perl, no guarantee is made that the |
51
|
|
|
|
|
|
|
minimum required version will not be increased. The version may be increased |
52
|
|
|
|
|
|
|
for any reason, and there is no promise that patches will be accepted to lower |
53
|
|
|
|
|
|
|
the minimum required perl. |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
=head1 AUTHOR |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
Ricardo SIGNES 😏 <cpan@semiotic.systems> |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
This software is copyright (c) 2022 by Ricardo SIGNES. |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
64
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
=cut |