File Coverage

blib/lib/Xcruciate.pm
Criterion Covered Total %
statement 10 12 83.3
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 14 16 87.5


line stmt bran cond sub pod time code
1             package Xcruciate;
2              
3 2     2   40992 use Exporter;
  2         5  
  2         696  
4             @ISA = ('Exporter');
5             @EXPORT = qw();
6             our $VERSION = 0.21;
7              
8 2     2   14 use strict;
  2         5  
  2         71  
9 2     2   20 use warnings;
  2         17  
  2         69  
10 2     2   1276 use Xcruciate::XcruciateConfig 0.21;
  0            
  0            
11             use Xcruciate::UnitConfig 0.21;
12              
13             =head1 NAME
14              
15             Xcruciate - libraries for perl scripts in and around the Xcruciate server project.
16              
17             If you are looking for help with Xcruciate in general, try
18             'man xcruciate' (with a small x) or the Xcruciate website
19             (F).
20              
21             =head1 SYNOPSIS
22              
23             There's not a lot to synopse in here. It's a convenient place to hang the
24             Xcruciate CPAN documentation, and it will cause all the sub-modules to be
25             loaded too.
26              
27             =head1 DESCRIPTION
28              
29             Provides perl functions for interacting with Xcruciate.
30              
31             =head1 AUTHOR
32              
33             Mark Howe, Emelonman@cpan.orgE
34              
35             =head2 EXPORT
36              
37             None
38              
39             =head1 BUGS
40              
41             The best way to report bugs is via the Xcruciate bugzilla site (F).
42              
43             =head1 PREVIOUS VERSIONS
44              
45             =over
46              
47             B<0.01>: First upload
48              
49             B<0.02>: First upload containing the module
50              
51             B<0.03>: Fixed formatting, corrected links and generally read the text
52              
53             B<0.04>: Changed minimum perl version to 5.8.8
54              
55             B<0.05>: Require v0.05 dependencies
56              
57             B<0.06>: Require v0.06 dependencies
58              
59             B<0.07>: Attempt to put all Xcruciate modules in one PAUSE tarball.
60              
61             B<0.08>: Global version update
62              
63             B<0.10>: Global version update
64              
65             B<0.12>: Global version update
66              
67             B<0.14>: Global update
68              
69             B<0.15>: Global update
70              
71             B<0.16>: Global update
72              
73             B<0.17>: Use strict/warnings (although not very useful in this case)
74              
75             B<0.18>: Global update
76              
77             B<0.19>: Global update
78              
79             B<0.20>: Global update
80              
81             =back
82              
83             =head1 COPYRIGHT AND LICENSE
84              
85             Copyright (C) 2007 - 2009 by SARL Cyberporte/Menteith Consulting
86              
87             This library is distributed under BSD licence (F).
88              
89             =cut
90              
91             1;