File Coverage

blib/lib/Boxer/CLI.pm
Criterion Covered Total %
statement 20 20 100.0
branch n/a
condition n/a
subroutine 7 7 100.0
pod n/a
total 27 27 100.0


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   462547 use v5.14;
  4         33  
12 4     4   21 use utf8;
  4         7  
  4         29  
13 4     4   1451 use Role::Commons -all;
  4         81209  
  4         30  
14 4     4   88150 use namespace::autoclean 0.16;
  4         41319  
  4         24  
15              
16 4     4   2264 use App::Cmd::Setup -app;
  4         98414  
  4         37  
17              
18 4     4   754 use strictures 2;
  4         35  
  4         136  
19 4     4   658 no warnings "experimental::signatures";
  4         8  
  4         283  
20              
21             =head1 VERSION
22              
23             Version v1.4.1
24              
25             =cut
26              
27             our $VERSION = "v1.4.1";
28              
29             =head1 SYNOPSIS
30              
31             use Boxer::CLI;
32             BOXER::CLI->run;
33              
34             =head1 DESCRIPTION
35              
36             Support library for the L<boxer> command-line tool.
37              
38             =head1 SEE ALSO
39              
40             L<boxer>, L<Boxer>.
41              
42             =head1 AUTHOR
43              
44             Jonas Smedegaard C<< <dr@jones.dk> >>.
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;