line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
# ============================================================================ |
2
|
|
|
|
|
|
|
package MooseX::App::Plugin::Version::Meta::Class; |
3
|
|
|
|
|
|
|
# ============================================================================ |
4
|
|
|
|
|
|
|
|
5
|
4
|
|
|
4
|
|
3279
|
use 5.010; |
|
4
|
|
|
|
|
17
|
|
6
|
4
|
|
|
4
|
|
23
|
use utf8; |
|
4
|
|
|
|
|
10
|
|
|
4
|
|
|
|
|
33
|
|
7
|
|
|
|
|
|
|
|
8
|
4
|
|
|
4
|
|
109
|
use namespace::autoclean; |
|
4
|
|
|
|
|
9
|
|
|
4
|
|
|
|
|
35
|
|
9
|
4
|
|
|
4
|
|
348
|
use Moose::Role; |
|
4
|
|
|
|
|
9
|
|
|
4
|
|
|
|
|
32
|
|
10
|
|
|
|
|
|
|
|
11
|
4
|
|
|
4
|
|
24375
|
use MooseX::App::Plugin::Version::Command; |
|
4
|
|
|
|
|
15
|
|
|
4
|
|
|
|
|
456
|
|
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
around '_build_app_commands' => sub { |
14
|
|
|
|
|
|
|
my $orig = shift; |
15
|
|
|
|
|
|
|
my $self = shift; |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
my $return = $self->$orig(@_); |
18
|
|
|
|
|
|
|
$return->{version} ||= 'MooseX::App::Plugin::Version::Command'; |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
return $return; |
21
|
|
|
|
|
|
|
}; |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
1; |