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   2630 use v5.14;
  4         13  
8 4     4   19 use utf8;
  4         6  
  4         24  
9 4     4   127 use Role::Commons -all;
  4         8  
  4         27  
10 4     4   5214 use namespace::autoclean 0.16;
  4         57  
  4         23  
11              
12 4     4   1864 use Log::Any::Adapter qw<Screen>;
  4         8402  
  4         17  
13 4     4   5649 use App::Cmd::Setup-command;
  4         8  
  4         23  
14              
15 4     4   1859 use strictures 2;
  4         4123  
  4         146  
16 4     4   684 no warnings "experimental::signatures";
  4         42  
  4         264  
17              
18             =head1 VERSION
19              
20             Version v1.4.2
21              
22             =cut
23              
24             our $VERSION = "v1.4.2";
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;