Xcruciate - libraries for perl scripts in and around the Xcruciate server project.


Xcruciate documentation Contained in the Xcruciate distribution.

Index


Code Index:

NAME

Top

Xcruciate - libraries for perl scripts in and around the Xcruciate server project.

If you are looking for help with Xcruciate in general, try 'man xcruciate' (with a small x) or the Xcruciate website (http://www.xcruciate.co.uk).

SYNOPSIS

Top

There's not a lot to synopse in here. It's a convenient place to hang the Xcruciate CPAN documentation, and it will cause all the sub-modules to be loaded too.

DESCRIPTION

Top

Provides perl functions for interacting with Xcruciate.

AUTHOR

Top

Mark Howe, <melonman@cpan.org>

EXPORT

None

BUGS

Top

The best way to report bugs is via the Xcruciate bugzilla site (http://www.xcruciate.co.uk/bugzilla).

PREVIOUS VERSIONS

Top

0.01: First upload

0.02: First upload containing the module

0.03: Fixed formatting, corrected links and generally read the text

0.04: Changed minimum perl version to 5.8.8

0.05: Require v0.05 dependencies

0.06: Require v0.06 dependencies

0.07: Attempt to put all Xcruciate modules in one PAUSE tarball.

0.08: Global version update

0.10: Global version update

0.12: Global version update

0.14: Global update

0.15: Global update

0.16: Global update

0.17: Use strict/warnings (although not very useful in this case)

0.18: Global update

0.19: Global update

0.20: Global update

COPYRIGHT AND LICENSE

Top


Xcruciate documentation Contained in the Xcruciate distribution.

package Xcruciate;

use Exporter;
@ISA    = ('Exporter');
@EXPORT = qw();
our $VERSION = 0.21;

use strict;
use warnings;
use Xcruciate::XcruciateConfig 0.21;
use Xcruciate::UnitConfig 0.21;

1;