line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Boxer::CLI; |
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
=encoding UTF-8 |
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
=head1 NAME |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
Boxer::CLI - boxer command line utils |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
=cut |
10
|
|
|
|
|
|
|
|
11
|
4
|
|
|
4
|
|
308447
|
use v5.14; |
|
4
|
|
|
|
|
30
|
|
12
|
4
|
|
|
4
|
|
20
|
use utf8; |
|
4
|
|
|
|
|
5
|
|
|
4
|
|
|
|
|
23
|
|
13
|
4
|
|
|
4
|
|
1183
|
use Role::Commons -all; |
|
4
|
|
|
|
|
67338
|
|
|
4
|
|
|
|
|
24
|
|
14
|
4
|
|
|
4
|
|
71417
|
use namespace::autoclean 0.16; |
|
4
|
|
|
|
|
34658
|
|
|
4
|
|
|
|
|
19
|
|
15
|
|
|
|
|
|
|
|
16
|
4
|
|
|
4
|
|
1797
|
use App::Cmd::Setup -app; |
|
4
|
|
|
|
|
90948
|
|
|
4
|
|
|
|
|
30
|
|
17
|
|
|
|
|
|
|
|
18
|
4
|
|
|
4
|
|
609
|
use strictures 2; |
|
4
|
|
|
|
|
26
|
|
|
4
|
|
|
|
|
112
|
|
19
|
4
|
|
|
4
|
|
541
|
no warnings "experimental::signatures"; |
|
4
|
|
|
|
|
8
|
|
|
4
|
|
|
|
|
251
|
|
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head1 VERSION |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
Version v1.4.3 |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=cut |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
our $VERSION = "v1.4.3"; |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head1 SYNOPSIS |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
use Boxer::CLI; |
32
|
|
|
|
|
|
|
BOXER::CLI->run; |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head1 DESCRIPTION |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
Support library for the L command-line tool. |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=head1 SEE ALSO |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
L, L. |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=head1 AUTHOR |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
Jonas Smedegaard C<< >>. |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=cut |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
our $AUTHORITY = 'cpan:JONASS'; |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENCE |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
Copyright © 2013-2016 Jonas Smedegaard |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
55
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
=head1 DISCLAIMER OF WARRANTIES |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED |
60
|
|
|
|
|
|
|
WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF |
61
|
|
|
|
|
|
|
MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
=cut |
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
1; |