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