File Coverage

blib/lib/CLI/TextLines/Utils.pm
Criterion Covered Total %
statement 8 8 100.0
branch n/a
condition n/a
subroutine 3 5 60.0
pod 2 2 100.0
total 13 15 86.6


line stmt bran cond sub pod time code
1             package CLI::TextLines::Utils;
2              
3 1     1   48734 use 5.006;
  1         3  
4 1     1   4 use strict;
  1         1  
  1         15  
5 1     1   3 use warnings;
  1         2  
  1         104  
6              
7             =head1 NAME
8              
9             CLI::TextLines::Utils - The great new CLI::TextLines::Utils!
10              
11             =head1 VERSION
12              
13             Version 0.11
14              
15             =cut
16              
17             our $VERSION = '0.11';
18              
19              
20             =head1 SYNOPSIS
21              
22             Quick summary of what the module does.
23              
24             Perhaps a little code snippet.
25              
26             use CLI::TextLines::Utils;
27              
28             my $foo = CLI::TextLines::Utils->new();
29             ...
30              
31             =head1 EXPORT
32              
33             A list of functions that can be exported. You can delete this section
34             if you don't export anything, such as for a purely object-oriented module.
35              
36             =head1 SUBROUTINES/METHODS
37              
38             =head2 function1
39              
40             =cut
41              
42       0 1   sub function1 {
43             }
44              
45             =head2 function2
46              
47             =cut
48              
49       0 1   sub function2 {
50             }
51              
52             =head1 AUTHOR
53              
54             "Toshiyuki Shimono", C<< >>
55              
56             =head1 BUGS
57              
58             Please report any bugs or feature requests to C, or through
59             the web interface at L. I will be notified, and then you'll
60             automatically be notified of progress on your bug as I make changes.
61              
62              
63              
64              
65             =head1 SUPPORT
66              
67             You can find documentation for this module with the perldoc command.
68              
69             perldoc CLI::TextLines::Utils
70              
71              
72             You can also look for information at:
73              
74             =over 4
75              
76             =item * RT: CPAN's request tracker (report bugs here)
77              
78             L
79              
80             =item * AnnoCPAN: Annotated CPAN documentation
81              
82             L
83              
84             =item * CPAN Ratings
85              
86             L
87              
88             =item * Search CPAN
89              
90             L
91              
92             =back
93              
94              
95             =head1 ACKNOWLEDGEMENTS
96              
97              
98             =head1 LICENSE AND COPYRIGHT
99              
100             Copyright 2018 "Toshiyuki Shimono".
101              
102             This program is free software: you can redistribute it and/or modify
103             it under the terms of the GNU General Public License as published by
104             the Free Software Foundation, either version 3 of the License, or
105             (at your option) any later version.
106              
107             This program is distributed in the hope that it will be useful,
108             but WITHOUT ANY WARRANTY; without even the implied warranty of
109             MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
110             GNU General Public License for more details.
111              
112             You should have received a copy of the GNU General Public License
113             along with this program. If not, see L.
114              
115              
116             =cut
117              
118             1; # End of CLI::TextLines::Utils