line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Dist::Zilla::Role::ConfigDumper 6.030; |
2
|
|
|
|
|
|
|
# ABSTRACT: something that can dump its (public, simplified) configuration |
3
|
|
|
|
|
|
|
|
4
|
52
|
|
|
52
|
|
32989
|
use Moose::Role; |
|
52
|
|
|
|
|
134
|
|
|
52
|
|
|
|
|
374
|
|
5
|
|
|
|
|
|
|
|
6
|
52
|
|
|
52
|
|
269378
|
use Dist::Zilla::Pragmas; |
|
52
|
|
|
|
|
170
|
|
|
52
|
|
|
|
|
403
|
|
7
|
|
|
|
|
|
|
|
8
|
52
|
|
|
52
|
|
423
|
use namespace::autoclean; |
|
52
|
|
|
|
|
207
|
|
|
52
|
|
|
|
|
415
|
|
9
|
|
|
|
|
|
|
|
10
|
60
|
|
|
60
|
0
|
125
|
sub dump_config { return {}; } |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
1; |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
__END__ |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=pod |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=encoding UTF-8 |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head1 NAME |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
Dist::Zilla::Role::ConfigDumper - something that can dump its (public, simplified) configuration |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head1 VERSION |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
version 6.030 |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=head1 PERL VERSION |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
This module should work on any version of perl still receiving updates from |
31
|
|
|
|
|
|
|
the Perl 5 Porters. This means it should work on any version of perl released |
32
|
|
|
|
|
|
|
in the last two to three years. (That is, if the most recently released |
33
|
|
|
|
|
|
|
version is v5.40, then this module should work on both v5.40 and v5.38.) |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
Although it may work on older versions of perl, no guarantee is made that the |
36
|
|
|
|
|
|
|
minimum required version will not be increased. The version may be increased |
37
|
|
|
|
|
|
|
for any reason, and there is no promise that patches will be accepted to lower |
38
|
|
|
|
|
|
|
the minimum required perl. |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=head1 AUTHOR |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
Ricardo SIGNES 😏 <cpan@semiotic.systems> |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
This software is copyright (c) 2023 by Ricardo SIGNES. |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
49
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
=cut |