line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
# ABSTRACT: Additional helper hook routines |
2
|
|
|
|
|
|
|
package App::CharmKit; |
3
|
|
|
|
|
|
|
|
4
|
1
|
|
|
1
|
|
843
|
use charm; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
18
|
|
5
|
1
|
|
|
1
|
|
169
|
use base "Exporter::Tiny"; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
30
|
|
6
|
1
|
|
|
1
|
|
4123
|
use FindBin; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
79
|
|
7
|
1
|
|
|
1
|
|
7
|
use lib "$FindBin::Bin/..lib"; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
17
|
|
8
|
1
|
|
|
1
|
|
232
|
use Module::Runtime qw(use_package_optimistically); |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
7
|
|
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
our $VERSION = '2.11'; |
11
|
|
|
|
|
|
|
our @EXPORT = qw(plugin); |
12
|
|
|
|
|
|
|
|
13
|
0
|
|
|
0
|
0
|
|
sub plugin ($name, $opts = {}) { |
|
0
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
14
|
0
|
|
|
|
|
|
return use_package_optimistically("$name")->new($opts); |
15
|
|
|
|
|
|
|
} |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
1; |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
__END__ |