Bump to 0.19
[gitmo/MooseX-AttributeHelpers.git] / lib / MooseX / AttributeHelpers / Collection / Bag.pm
1
2 package MooseX::AttributeHelpers::Collection::Bag;
3 use Moose;
4
5 our $VERSION   = '0.19';
6 $VERSION = eval $VERSION;
7 our $AUTHORITY = 'cpan:STEVAN';
8
9 extends 'Moose::Meta::Attribute';
10 with 'MooseX::AttributeHelpers::Trait::Collection::Bag';
11
12 no Moose;
13
14 # register the alias ...
15 package # hide me from search.cpan.org
16     Moose::Meta::Attribute::Custom::Collection::Bag;
17 sub register_implementation { 'MooseX::AttributeHelpers::Collection::Bag' }
18
19 1;
20
21 __END__
22
23 =pod
24
25 =head1 NAME
26
27 MooseX::AttributeHelpers::Collection::Bag
28
29 =head1 SYNOPSIS
30
31   package Stuff;
32   use Moose;
33   use MooseX::AttributeHelpers;
34   
35   has 'word_histogram' => (
36       metaclass => 'Collection::Bag',
37       is        => 'ro',
38       isa       => 'Bag', # optional ... as is defalt
39       provides  => {
40           'add'    => 'add_word',
41           'get'    => 'get_count_for',            
42           'empty'  => 'has_any_words',
43           'count'  => 'num_words',
44           'delete' => 'delete_word',
45       }
46   );
47   
48 =head1 DESCRIPTION
49
50 This module provides a Bag attribute which provides a number of 
51 bag-like operations. See L<MooseX::AttributeHelpers::MethodProvider::Bag>
52 for more details.
53
54 =head1 METHODS
55
56 =over 4
57
58 =item B<meta>
59
60 =item B<method_provider>
61
62 =item B<has_method_provider>
63
64 =item B<helper_type>
65
66 =item B<process_options_for_provides>
67
68 =back
69
70 =head1 BUGS
71
72 All complex software has bugs lurking in it, and this module is no 
73 exception. If you find a bug please either email me, or add the bug
74 to cpan-RT.
75
76 =head1 AUTHOR
77
78 Stevan Little E<lt>stevan@iinteractive.comE<gt>
79
80 =head1 COPYRIGHT AND LICENSE
81
82 Copyright 2007-2009 by Infinity Interactive, Inc.
83
84 L<http://www.iinteractive.com>
85
86 This library is free software; you can redistribute it and/or modify
87 it under the same terms as Perl itself.
88
89 =cut