line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Module::New::Recipe::Dist; |
2
|
|
|
|
|
|
|
|
3
|
2
|
|
|
2
|
|
669
|
use strict; |
|
2
|
|
|
|
|
3
|
|
|
2
|
|
|
|
|
85
|
|
4
|
2
|
|
|
2
|
|
11
|
use warnings; |
|
2
|
|
|
|
|
2
|
|
|
2
|
|
|
|
|
58
|
|
5
|
2
|
|
|
2
|
|
593
|
use Module::New::Recipe; |
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
13
|
|
6
|
2
|
|
|
2
|
|
592
|
use Module::New::Command::Basic; |
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
12
|
|
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
available_options qw( make=s test|t=s@ edit|e no_dirs xs ); |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
flow { |
11
|
|
|
|
|
|
|
set_distname; |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
create_distdir; |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
create_maketool; |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
create_general_files; |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
create_tests; |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
create_files(qw( MainModule )); |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
create_manifest; |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
edit_mainfile( optional => 1 ); |
26
|
|
|
|
|
|
|
}; |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
1; |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
__END__ |