File Coverage

blib/lib/Dist/Zilla/Role/Chrome.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Dist::Zilla::Role::Chrome 6.037;
2             # ABSTRACT: something that provides a user interface for Dist::Zilla
3              
4 50     50   43009 use Moose::Role;
  50         6180  
  50         544  
5              
6 50     50   285988 use Dist::Zilla::Pragmas;
  50         150  
  50         496  
7              
8 50     50   373 use namespace::autoclean;
  50         165  
  50         585  
9              
10             requires 'logger';
11              
12             requires 'prompt_str';
13             requires 'prompt_yn';
14             requires 'prompt_any_key';
15              
16             1;
17              
18             __END__
19              
20             =pod
21              
22             =encoding UTF-8
23              
24             =head1 NAME
25              
26             Dist::Zilla::Role::Chrome - something that provides a user interface for Dist::Zilla
27              
28             =head1 VERSION
29              
30             version 6.037
31              
32             =head1 PERL VERSION
33              
34             This module should work on any version of perl still receiving updates from
35             the Perl 5 Porters. This means it should work on any version of perl
36             released in the last two to three years. (That is, if the most recently
37             released version is v5.40, then this module should work on both v5.40 and
38             v5.38.)
39              
40             Although it may work on older versions of perl, no guarantee is made that the
41             minimum required version will not be increased. The version may be increased
42             for any reason, and there is no promise that patches will be accepted to
43             lower the minimum required perl.
44              
45             =head1 AUTHOR
46              
47             Ricardo SIGNES 😏 <cpan@semiotic.systems>
48              
49             =head1 COPYRIGHT AND LICENSE
50              
51             This software is copyright (c) 2026 by Ricardo SIGNES.
52              
53             This is free software; you can redistribute it and/or modify it under
54             the same terms as the Perl 5 programming language system itself.
55              
56             =cut