Initial commit
[gruntmaster-data.git] / lib / Gruntmaster / Data.pm
CommitLineData
bbf8209c
MG
1package Gruntmaster::Data;
2
3use 5.014002;
4use strict;
5use warnings;
6
7require Exporter;
8
9our @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.
18our %EXPORT_TAGS = ( 'all' => [ qw(
19
20) ] );
21
22our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
23
24our @EXPORT = qw(
25
26);
27
28our $VERSION = '5999.000_001';
29$VERSION = eval $VERSION; # see L<perlmodstyle>
30
31
32# Preloaded methods go here.
33
341;
35__END__
36# Below is stub documentation for your module. You'd better edit it!
37
38=head1 NAME
39
40Gruntmaster::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
49Stub documentation for Gruntmaster::Data, created by h2xs. It looks like the
50author of the extension was negligent enough to leave the stub
51unedited.
52
53Blah blah blah.
54
55=head2 EXPORT
56
57None by default.
58
59
60
61=head1 SEE ALSO
62
63Mention other useful documentation such as the documentation of
64related modules or operating system documentation (such as man pages
65in UNIX), or any relevant external documentation such as RFCs or
66standards.
67
68If you have a mailing list set up for your module, mention it here.
69
70If you have a web site set up for your module, mention it here.
71
72=head1 AUTHOR
73
74Marius Gavrilescu, E<lt>marius@E<gt>
75
76=head1 COPYRIGHT AND LICENSE
77
78Copyright (C) 2014 by Marius Gavrilescu
79
80This library is free software; you can redistribute it and/or modify
81it under the same terms as Perl itself, either Perl version 5.18.2 or,
82at your option, any later version of Perl 5 you may have available.
83
84
85=cut
This page took 0.014628 seconds and 4 git commands to generate.