line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Evented::Configuration::Builder; |
2
|
1
|
|
|
1
|
|
592
|
use Module::Build; |
|
1
|
|
|
|
|
81808
|
|
|
1
|
|
|
|
|
49
|
|
3
|
|
|
|
|
|
|
@ISA = qw(Module::Build); |
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
sub ACTION_docs { |
6
|
1
|
|
|
1
|
|
510
|
use Pod::Readme; |
|
1
|
|
|
|
|
277783
|
|
|
1
|
|
|
|
|
35
|
|
7
|
1
|
|
|
1
|
|
547
|
use Pod::Select; |
|
1
|
|
|
|
|
2032
|
|
|
1
|
|
|
|
|
197
|
|
8
|
|
|
|
|
|
|
|
9
|
0
|
|
|
0
|
0
|
|
my $self = shift; |
10
|
|
|
|
|
|
|
|
11
|
0
|
|
|
|
|
|
podselect({ -output => 'README.pod' }, |
12
|
|
|
|
|
|
|
'lib/Evented/Configuration.pm'); |
13
|
|
|
|
|
|
|
|
14
|
0
|
|
|
|
|
|
my $parser = Pod::Readme->new(); |
15
|
0
|
|
|
|
|
|
$parser->parse_from_file('README.pod', 'README'); |
16
|
|
|
|
|
|
|
|
17
|
0
|
|
|
|
|
|
return $self->SUPER::ACTION_docs; |
18
|
|
|
|
|
|
|
} |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
1; |