File Coverage

blib/lib/Zeta.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package Zeta;
2              
3 1     1   23832 use 5.006;
  1         3  
  1         31  
4 1     1   4 use strict;
  1         2  
  1         29  
5 1     1   4 use warnings;
  1         5  
  1         32  
6              
7 1     1   588 use Zeta::Util qw(:ALL);
  1         3  
  1         235  
8              
9             =head1 NAME
10              
11             Zeta - A loose collection of modules for script, application, and web-application development.
12              
13             =head1 VERSION
14              
15             Version 0.04
16              
17             =cut
18              
19             our $VERSION = '0.04';
20              
21             =head1 SYNOPSIS
22              
23             Provides a very loose and basic framework for different applications.
24              
25             Perhaps a little code snippet.
26              
27             use Zeta;
28              
29             my $foo = new Zeta();
30             ...
31              
32             =head1 AUTHOR
33              
34             Gregory S. Youngblood, C<< >>
35              
36             =head1 BUGS
37              
38             Please report any bugs or feature requests to C, or through
39             the web interface at L. I will be notified, and then you'll
40             automatically be notified of progress on your bug as I make changes.
41              
42              
43              
44              
45             =head1 SUPPORT
46              
47             You can find documentation for this module with the perldoc command.
48              
49             perldoc Zeta
50              
51              
52             You can also look for information at:
53              
54             =over 4
55              
56             =item * RT: CPAN's request tracker (report bugs here)
57              
58             L
59              
60             =item * AnnoCPAN: Annotated CPAN documentation
61              
62             L
63              
64             =item * CPAN Ratings
65              
66             L
67              
68             =item * Search CPAN
69              
70             L
71              
72             =back
73              
74              
75             =head1 ACKNOWLEDGEMENTS
76              
77              
78             =head1 LICENSE AND COPYRIGHT
79              
80             Copyright 1995-2012 Gregory S. Youngblood.
81              
82             This program is free software; you can redistribute it and/or modify it
83             under the terms of either: the GNU General Public License as published
84             by the Free Software Foundation; or the Artistic License.
85              
86             See http://dev.perl.org/licenses/ for more information.
87              
88              
89             =cut
90              
91             1; # End of Zeta