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