line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Module::New::File::Readme;
|
2
|
|
|
|
|
|
|
|
3
|
2
|
|
|
2
|
|
493
|
use strict;
|
|
2
|
|
|
|
|
3
|
|
|
2
|
|
|
|
|
57
|
|
4
|
2
|
|
|
2
|
|
5
|
use warnings;
|
|
2
|
|
|
|
|
2
|
|
|
2
|
|
|
|
|
42
|
|
5
|
2
|
|
|
2
|
|
8
|
use Module::New::File;
|
|
2
|
|
|
|
|
3
|
|
|
2
|
|
|
|
|
12
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
file 'README' => content { return <<'EOT';
|
8
|
|
|
|
|
|
|
<%= $c->distname %>
|
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
INSTALLATION
|
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
To install this module, run the following commands:
|
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
perl Makefile.PL
|
15
|
|
|
|
|
|
|
make
|
16
|
|
|
|
|
|
|
make test
|
17
|
|
|
|
|
|
|
make install
|
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
COPYRIGHT AND LICENSE
|
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
Copyright (C) <%= $c->date->year %> <%= $c->config('author') %>
|
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
<%= $c->license->notice %>
|
24
|
|
|
|
|
|
|
EOT
|
25
|
|
|
|
|
|
|
};
|
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
1;
|
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
__END__
|