File Coverage

blib/lib/Verizon/Cloud/Storage.pm
Criterion Covered Total %
statement 9 10 90.0
branch n/a
condition n/a
subroutine 3 4 75.0
pod 1 1 100.0
total 13 15 86.6


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