line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Module::New::Recipe::Dist;
|
2
|
|
|
|
|
|
|
|
3
|
2
|
|
|
2
|
|
470
|
use strict;
|
|
2
|
|
|
|
|
2
|
|
|
2
|
|
|
|
|
47
|
|
4
|
2
|
|
|
2
|
|
6
|
use warnings;
|
|
2
|
|
|
|
|
1
|
|
|
2
|
|
|
|
|
34
|
|
5
|
2
|
|
|
2
|
|
260
|
use Module::New::Recipe;
|
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
7
|
|
6
|
2
|
|
|
2
|
|
406
|
use Module::New::Command::Basic;
|
|
2
|
|
|
|
|
2
|
|
|
2
|
|
|
|
|
8
|
|
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__
|