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