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.029;
2             # ABSTRACT: something that can dump its (public, simplified) configuration
3              
4 52     52   32482 use Moose::Role;
  52         140  
  52         366  
5              
6 52     52   269635 use Dist::Zilla::Pragmas;
  52         194  
  52         395  
7              
8 52     52   414 use namespace::autoclean;
  52         139  
  52         375  
9              
10 60     60 0 136 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.029
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) 2022 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