foo
[gitmo/MooseX-AttributeHelpers.git] / lib / MooseX / AttributeHelpers / Collection / Hash.pm
CommitLineData
22d869ff 1
2package MooseX::AttributeHelpers::Collection::Hash;
d26633fc 3use Moose;
22d869ff 4
5our $VERSION = '0.01';
6our $AUTHORITY = 'cpan:STEVAN';
7
65a43f48 8use MooseX::AttributeHelpers::MethodProvider::Hash;
d26633fc 9
65a43f48 10extends 'MooseX::AttributeHelpers::Collection';
8ba40fb0 11
65a43f48 12has '+method_provider' => (
13 default => 'MooseX::AttributeHelpers::MethodProvider::Hash'
d26633fc 14);
15
65a43f48 16sub helper_type { 'HashRef' }
17
d26633fc 18no Moose;
19
20# register the alias ...
21package Moose::Meta::Attribute::Custom::Collection::Hash;
22sub register_implementation { 'MooseX::AttributeHelpers::Collection::Hash' }
23
24
22d869ff 251;
26
27__END__
28
29=pod
30
31=head1 NAME
32
33=head1 SYNOPSIS
34
35=head1 DESCRIPTION
36
37=head1 METHODS
38
39=head1 BUGS
40
41All complex software has bugs lurking in it, and this module is no
42exception. If you find a bug please either email me, or add the bug
43to cpan-RT.
44
45=head1 AUTHOR
46
47Stevan Little E<lt>stevan@iinteractive.comE<gt>
48
49=head1 COPYRIGHT AND LICENSE
50
51Copyright 2007 by Infinity Interactive, Inc.
52
53L<http://www.iinteractive.com>
54
55This library is free software; you can redistribute it and/or modify
56it under the same terms as Perl itself.
57
58=cut