93f5eded2edb625c0746476c196913141336813b
[perl-indexdata-utils.git] / lib / IndexData / Utils.pm
1 package IndexData::Utils;
2
3 use 5.010001;
4 use strict;
5 use warnings;
6
7 our $VERSION = '0.01';
8
9 use IndexData::Utils::PersistentCounter;
10
11 1;
12 __END__
13
14
15 =head1 NAME
16
17 IndexData::Utils - Utility Perl extension for Index Data applications
18
19 =head1 SYNOPSIS
20
21   use IndexData::Utils;
22   # Use functions from the various submodules.
23
24 =head1 DESCRIPTION
25
26 This library contains utility functions that we at Index Data want to
27 share between multiple applications -- for example, the persistent
28 counter used by both IRSpy (see issue IR-350) and MKHome (IR-351).
29
30 =head1 SEE ALSO
31
32 IndexData::Utils::PersistentCounter
33
34 =head1 AUTHOR
35
36 Mike Taylor, E<lt>mike@indexdata.comE<gt>
37
38 =head1 COPYRIGHT AND LICENSE
39
40 Copyright (C) 2014 by Index Data.
41
42 This library is free software; you can redistribute it and/or modify
43 it under the same terms as Perl itself, either Perl version 5.8.4 or,
44 at your option, any later version of Perl 5 you may have available.
45
46
47 =cut