Bump to 0.13
[gitmo/MooseX-AttributeHelpers.git] / lib / MooseX / AttributeHelpers / Collection.pm
1
2 package MooseX::AttributeHelpers::Collection;
3 use Moose;
4
5 our $VERSION   = '0.13';
6 our $AUTHORITY = 'cpan:STEVAN';
7
8 extends 'MooseX::AttributeHelpers::Base';
9
10 no Moose;
11
12 1;
13
14 __END__
15
16 =pod
17
18 =head1 NAME
19
20 MooseX::AttributeHelpers::Collection - Base class for all collection type helpers
21
22 =head1 DESCRIPTION
23
24 Documentation to come.
25
26 =head1 METHODS
27
28 =over 4
29
30 =item B<meta>
31
32 =item B<container_type>
33
34 =item B<container_type_constraint>
35
36 =item B<has_container_type>
37
38 =item B<process_options_for_provides>
39
40 =back
41
42 =head1 BUGS
43
44 All complex software has bugs lurking in it, and this module is no 
45 exception. If you find a bug please either email me, or add the bug
46 to cpan-RT.
47
48 =head1 AUTHOR
49
50 Stevan Little E<lt>stevan@iinteractive.comE<gt>
51
52 =head1 COPYRIGHT AND LICENSE
53
54 Copyright 2007-2008 by Infinity Interactive, Inc.
55
56 L<http://www.iinteractive.com>
57
58 This library is free software; you can redistribute it and/or modify
59 it under the same terms as Perl itself.
60
61 =cut