line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Boxer::CLI::Command; |
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
=encoding UTF-8 |
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
=cut |
6
|
|
|
|
|
|
|
|
7
|
4
|
|
|
4
|
|
2589
|
use v5.14; |
|
4
|
|
|
|
|
13
|
|
8
|
4
|
|
|
4
|
|
20
|
use utf8; |
|
4
|
|
|
|
|
7
|
|
|
4
|
|
|
|
|
22
|
|
9
|
4
|
|
|
4
|
|
117
|
use Role::Commons -all; |
|
4
|
|
|
|
|
6
|
|
|
4
|
|
|
|
|
26
|
|
10
|
4
|
|
|
4
|
|
5214
|
use namespace::autoclean 0.16; |
|
4
|
|
|
|
|
60
|
|
|
4
|
|
|
|
|
22
|
|
11
|
|
|
|
|
|
|
|
12
|
4
|
|
|
4
|
|
1810
|
use Log::Any::Adapter qw; |
|
4
|
|
|
|
|
9508
|
|
|
4
|
|
|
|
|
15
|
|
13
|
4
|
|
|
4
|
|
5517
|
use App::Cmd::Setup-command; |
|
4
|
|
|
|
|
8
|
|
|
4
|
|
|
|
|
22
|
|
14
|
|
|
|
|
|
|
|
15
|
4
|
|
|
4
|
|
1905
|
use strictures 2; |
|
4
|
|
|
|
|
4299
|
|
|
4
|
|
|
|
|
128
|
|
16
|
4
|
|
|
4
|
|
651
|
no warnings "experimental::signatures"; |
|
4
|
|
|
|
|
37
|
|
|
4
|
|
|
|
|
266
|
|
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head1 VERSION |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
Version v1.4.3 |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=cut |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
our $VERSION = "v1.4.3"; |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head1 AUTHOR |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
Jonas Smedegaard C<< >>. |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=cut |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
our $AUTHORITY = 'cpan:JONASS'; |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENCE |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
Copyright © 2013-2016 Jonas Smedegaard |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
39
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
=head1 DISCLAIMER OF WARRANTIES |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED |
44
|
|
|
|
|
|
|
WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF |
45
|
|
|
|
|
|
|
MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
=cut |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
1; |