File Coverage

blib/lib/Boxer/CLI/Command.pm
Criterion Covered Total %
statement 23 23 100.0
branch n/a
condition n/a
subroutine 8 8 100.0
pod n/a
total 31 31 100.0


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   3251 use v5.14;
  4         22  
8 4     4   23 use utf8;
  4         13  
  4         27  
9 4     4   150 use Role::Commons -all;
  4         7  
  4         36  
10 4     4   6306 use namespace::autoclean 0.16;
  4         68  
  4         27  
11              
12 4     4   2243 use Log::Any::Adapter qw<Screen>;
  4         10596  
  4         18  
13 4     4   6345 use App::Cmd::Setup-command;
  4         10  
  4         32  
14              
15 4     4   2487 use strictures 2;
  4         5228  
  4         175  
16 4     4   823 no warnings "experimental::signatures";
  4         47  
  4         296  
17              
18             =head1 VERSION
19              
20             Version v1.4.1
21              
22             =cut
23              
24             our $VERSION = "v1.4.1";
25              
26             =head1 AUTHOR
27              
28             Jonas Smedegaard C<< <dr@jones.dk> >>.
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;