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