File Coverage

blib/lib/Bundler/MultiGem.pm
Criterion Covered Total %
statement 11 13 84.6
branch n/a
condition n/a
subroutine 4 5 80.0
pod 1 1 100.0
total 16 19 84.2


line stmt bran cond sub pod time code
1             package Bundler::MultiGem;
2              
3 1     1   73251 use 5.006;
  1         4  
4 1     1   6 use strict;
  1         1  
  1         23  
5 1     1   4 use warnings;
  1         13  
  1         39  
6 1     1   487 use App::Cmd::Setup -app;
  1         39904  
  1         7  
7              
8             =head1 NAME
9              
10             Bundler::MultiGem - bundle-multigem utility for gem versions benchmarking
11              
12             =head1 VERSION
13              
14             Version 0.01
15              
16             =cut
17              
18             our $VERSION = '0.01';
19              
20              
21             =head1 SYNOPSIS
22              
23             Quick summary of what the module does.
24              
25             Perhaps a little code snippet.
26              
27             use Bundler::MultiGem;
28              
29             my $foo = Bundler::MultiGem->new();
30             ...
31              
32              
33             =head1 SUBROUTINES/METHODS
34              
35             =head2 opt_spec
36              
37             =cut
38              
39             sub opt_spec {
40 0     0 1   my ( $class, $app ) = @_;
41             return (
42 0           [ 'help' => "this usage screen" ],
43             $class->options($app),
44             )
45             }
46              
47             =head1 AUTHOR
48              
49             Mauro Berlanda, C<< >>
50              
51             =head1 BUGS
52              
53             Please report any bugs or feature requests to C, or through
54             the web interface at L. I will be notified, and then you'll
55             automatically be notified of progress on your bug as I make changes.
56              
57              
58             =head1 SUPPORT
59              
60             You can find documentation for this module with the perldoc command.
61              
62             perldoc Bundler::MultiGem
63              
64              
65             You can also look for information at:
66              
67             =over 4
68              
69             =item * RT: CPAN's request tracker (report bugs here)
70              
71             L
72              
73             =item * AnnoCPAN: Annotated CPAN documentation
74              
75             L
76              
77             =item * CPAN Ratings
78              
79             L
80              
81             =item * Search CPAN
82              
83             L
84              
85             =back
86              
87              
88             =head1 ACKNOWLEDGEMENTS
89              
90              
91             =head1 LICENSE AND COPYRIGHT
92              
93             Copyright 2018 Mauro Berlanda.
94              
95             This program is distributed under the MIT (X11) License:
96             L
97              
98             Permission is hereby granted, free of charge, to any person
99             obtaining a copy of this software and associated documentation
100             files (the "Software"), to deal in the Software without
101             restriction, including without limitation the rights to use,
102             copy, modify, merge, publish, distribute, sublicense, and/or sell
103             copies of the Software, and to permit persons to whom the
104             Software is furnished to do so, subject to the following
105             conditions:
106              
107             The above copyright notice and this permission notice shall be
108             included in all copies or substantial portions of the Software.
109              
110             THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
111             EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
112             OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
113             NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
114             HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
115             WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
116             FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
117             OTHER DEALINGS IN THE SOFTWARE.
118              
119              
120             =cut
121              
122             1; # End of Bundler::MultiGem