File Coverage

blib/lib/Acme/MyFirstModule/DRZIGMAN.pm
Criterion Covered Total %
statement 9 11 81.8
branch n/a
condition n/a
subroutine 3 5 60.0
pod 2 2 100.0
total 14 18 77.7


line stmt bran cond sub pod time code
1             package Acme::MyFirstModule::DRZIGMAN;
2              
3 1     1   57369 use 5.006;
  1         6  
  1         200  
4              
5 1     1   9 use strict;
  1         3  
  1         46  
6 1     1   7 use warnings FATAL => 'all';
  1         14  
  1         153  
7              
8             =head1 NAME
9              
10             Acme::MyFirstModule::DRZIGMAN - The great new Acme::MyFirstModule::DRZIGMAN!
11              
12             =head1 VERSION
13              
14             Version 0.01
15              
16             =cut
17              
18             our $VERSION = '0.03';
19              
20              
21             =head1 SYNOPSIS
22              
23             Quick summary of what the module does.
24              
25             Perhaps a little code snippet.
26              
27             use Acme::MyFirstModule::DRZIGMAN;
28              
29             my $foo = Acme::MyFirstModule::DRZIGMAN->new();
30             ...
31              
32             =head1 EXPORT
33              
34             A list of functions that can be exported. You can delete this section
35             if you don't export anything, such as for a purely object-oriented module.
36              
37             =head1 SUBROUTINES/METHODS
38              
39             =head2 function1
40              
41             =cut
42              
43 0     0 1   sub function1 {
44             }
45              
46             =head2 function2
47              
48             =cut
49              
50 0     0 1   sub function2 {
51             }
52              
53             =head1 AUTHOR
54              
55             Robert Stone, C<< >>
56              
57             =head1 BUGS
58              
59             Please report any bugs or feature requests to C, or through
60             the web interface at L. I will be notified, and then you'll
61             automatically be notified of progress on your bug as I make changes.
62              
63              
64              
65              
66             =head1 SUPPORT
67              
68             You can find documentation for this module with the perldoc command.
69              
70             perldoc Acme::MyFirstModule::DRZIGMAN
71              
72              
73             You can also look for information at:
74              
75             =over 4
76              
77             =item * RT: CPAN's request tracker (report bugs here)
78              
79             L
80              
81             =item * AnnoCPAN: Annotated CPAN documentation
82              
83             L
84              
85             =item * CPAN Ratings
86              
87             L
88              
89             =item * Search CPAN
90              
91             L
92              
93             =back
94              
95              
96             =head1 ACKNOWLEDGEMENTS
97              
98              
99             =head1 LICENSE AND COPYRIGHT
100              
101             Copyright 2014 Robert Stone.
102              
103             This program is free software; you can redistribute it and/or modify it
104             under the terms of the the Artistic License (2.0). You may obtain a
105             copy of the full license at:
106              
107             L
108              
109             Any use, modification, and distribution of the Standard or Modified
110             Versions is governed by this Artistic License. By using, modifying or
111             distributing the Package, you accept this license. Do not use, modify,
112             or distribute the Package, if you do not accept this license.
113              
114             If your Modified Version has been derived from a Modified Version made
115             by someone other than you, you are nevertheless required to ensure that
116             your Modified Version complies with the requirements of this license.
117              
118             This license does not grant you the right to use any trademark, service
119             mark, tradename, or logo of the Copyright Holder.
120              
121             This license includes the non-exclusive, worldwide, free-of-charge
122             patent license to make, have made, use, offer to sell, sell, import and
123             otherwise transfer the Package with respect to any patent claims
124             licensable by the Copyright Holder that are necessarily infringed by the
125             Package. If you institute patent litigation (including a cross-claim or
126             counterclaim) against any party alleging that the Package constitutes
127             direct or contributory patent infringement, then this Artistic License
128             to you shall terminate on the date that such litigation is filed.
129              
130             Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER
131             AND CONTRIBUTORS "AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.
132             THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
133             PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY
134             YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT HOLDER OR
135             CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, OR
136             CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THE PACKAGE,
137             EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
138              
139              
140             =cut
141              
142             1; # End of Acme::MyFirstModule::DRZIGMAN