adding MooseX::ATtributeHelpers
[gitmo/MooseX-AttributeHelpers.git] / lib / MooseX / AttributeHelpers.pm
1
2 package MooseX::AttributeHelpers;
3
4 our $VERSION   = '0.01';
5 our $AUTHORITY = 'cpan:STEVAN';
6
7 use MooseX::AttributeHelpers::Counter;
8 use MooseX::AttributeHelpers::Collection::Array;
9 use MooseX::AttributeHelpers::Collection::Hash;
10
11 1;
12
13 __END__
14
15 =pod
16
17 =head1 NAME
18
19 =head1 SYNOPSIS
20
21 =head1 DESCRIPTION
22
23 =head1 METHODS
24
25 =head1 BUGS
26
27 All complex software has bugs lurking in it, and this module is no 
28 exception. If you find a bug please either email me, or add the bug
29 to cpan-RT.
30
31 =head1 AUTHOR
32
33 Stevan Little E<lt>stevan@iinteractive.comE<gt>
34
35 =head1 COPYRIGHT AND LICENSE
36
37 Copyright 2007 by Infinity Interactive, Inc.
38
39 L<http://www.iinteractive.com>
40
41 This library is free software; you can redistribute it and/or modify
42 it under the same terms as Perl itself.
43
44 =cut