Initial commit
[gruntmaster-data.git] / lib / Gruntmaster / Data.pm
1 package Gruntmaster::Data;
2
3 use 5.014002;
4 use strict;
5 use warnings;
6
7 require Exporter;
8
9 our @ISA = qw(Exporter);
10
11 # Items to export into callers namespace by default. Note: do not export
12 # names by default without a very good reason. Use EXPORT_OK instead.
13 # Do not simply export all your public functions/methods/constants.
14
15 # This allows declaration use Gruntmaster::Data ':all';
16 # If you do not need this, moving things directly into @EXPORT or @EXPORT_OK
17 # will save memory.
18 our %EXPORT_TAGS = ( 'all' => [ qw(
19
20 ) ] );
21
22 our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
23
24 our @EXPORT = qw(
25
26 );
27
28 our $VERSION = '5999.000_001';
29 $VERSION = eval $VERSION; # see L<perlmodstyle>
30
31
32 # Preloaded methods go here.
33
34 1;
35 __END__
36 # Below is stub documentation for your module. You'd better edit it!
37
38 =head1 NAME
39
40 Gruntmaster::Data - Perl extension for blah blah blah
41
42 =head1 SYNOPSIS
43
44 use Gruntmaster::Data;
45 blah blah blah
46
47 =head1 DESCRIPTION
48
49 Stub documentation for Gruntmaster::Data, created by h2xs. It looks like the
50 author of the extension was negligent enough to leave the stub
51 unedited.
52
53 Blah blah blah.
54
55 =head2 EXPORT
56
57 None by default.
58
59
60
61 =head1 SEE ALSO
62
63 Mention other useful documentation such as the documentation of
64 related modules or operating system documentation (such as man pages
65 in UNIX), or any relevant external documentation such as RFCs or
66 standards.
67
68 If you have a mailing list set up for your module, mention it here.
69
70 If you have a web site set up for your module, mention it here.
71
72 =head1 AUTHOR
73
74 Marius Gavrilescu, E<lt>marius@E<gt>
75
76 =head1 COPYRIGHT AND LICENSE
77
78 Copyright (C) 2014 by Marius Gavrilescu
79
80 This library is free software; you can redistribute it and/or modify
81 it under the same terms as Perl itself, either Perl version 5.18.2 or,
82 at your option, any later version of Perl 5 you may have available.
83
84
85 =cut
This page took 0.025415 seconds and 5 git commands to generate.