File Coverage

blib/lib/Dist/Zilla/Role/ConfigDumper.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 0 1 0.0
total 14 15 93.3


line stmt bran cond sub pod time code
1             package Dist::Zilla::Role::ConfigDumper 6.037;
2             # ABSTRACT: something that can dump its (public, simplified) configuration
3              
4 52     52   39794 use Moose::Role;
  52         212  
  52         450  
5              
6 52     52   308345 use Dist::Zilla::Pragmas;
  52         140  
  52         1003  
7              
8 52     52   401 use namespace::autoclean;
  52         117  
  52         870  
9              
10 60     60 0 130 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.037
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
32             released in the last two to three years. (That is, if the most recently
33             released version is v5.40, then this module should work on both v5.40 and
34             v5.38.)
35              
36             Although it may work on older versions of perl, no guarantee is made that the
37             minimum required version will not be increased. The version may be increased
38             for any reason, and there is no promise that patches will be accepted to
39             lower the minimum required perl.
40              
41             =head1 AUTHOR
42              
43             Ricardo SIGNES 😏 <cpan@semiotic.systems>
44              
45             =head1 COPYRIGHT AND LICENSE
46              
47             This software is copyright (c) 2026 by Ricardo SIGNES.
48              
49             This is free software; you can redistribute it and/or modify it under
50             the same terms as the Perl 5 programming language system itself.
51              
52             =cut