line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Dist::Zilla::Role::Chrome 6.030; |
2
|
|
|
|
|
|
|
# ABSTRACT: something that provides a user interface for Dist::Zilla |
3
|
|
|
|
|
|
|
|
4
|
50
|
|
|
50
|
|
45682
|
use Moose::Role; |
|
50
|
|
|
|
|
5753
|
|
|
50
|
|
|
|
|
523
|
|
5
|
|
|
|
|
|
|
|
6
|
50
|
|
|
50
|
|
289207
|
use Dist::Zilla::Pragmas; |
|
50
|
|
|
|
|
148
|
|
|
50
|
|
|
|
|
542
|
|
7
|
|
|
|
|
|
|
|
8
|
50
|
|
|
50
|
|
422
|
use namespace::autoclean; |
|
50
|
|
|
|
|
144
|
|
|
50
|
|
|
|
|
581
|
|
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.030 |
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 released |
36
|
|
|
|
|
|
|
in the last two to three years. (That is, if the most recently released |
37
|
|
|
|
|
|
|
version is v5.40, then this module should work on both v5.40 and v5.38.) |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
Although it may work on older versions of perl, no guarantee is made that the |
40
|
|
|
|
|
|
|
minimum required version will not be increased. The version may be increased |
41
|
|
|
|
|
|
|
for any reason, and there is no promise that patches will be accepted to lower |
42
|
|
|
|
|
|
|
the minimum required perl. |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=head1 AUTHOR |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
Ricardo SIGNES 😏 <cpan@semiotic.systems> |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
This software is copyright (c) 2023 by Ricardo SIGNES. |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
53
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
=cut |