Some more documentation updates.
[gitmo/MooseX-AttributeHelpers.git] / lib / MooseX / AttributeHelpers / Composite.pm
CommitLineData
1b45ecc4 1package MooseX::AttributeHelpers::Composite;
2use Moose;
3
4extends 'Moose::Meta::Attribute';
5
6with qw(MooseX::AttributeHelpers::Composite::Trait);
7
8package # Over there, search.cpan! Run! Fetch!
9 Moose::Meta::Attribute::Custom::Composite;
10
11sub register_implementation { 'MooseX::AttributeHelpers::Composite' }
12
131;
f2b3b8f9 14
15__END__
16
17=pod
18
19=head1 NAME
20
21MooseX::AttributeHelpers::Composite
22
23=head1 DESCRIPTION
24
25This is just a metaclass that consumes the L<Composite
26Trait|MooseX::AttributeHelpers::Composite::Trait>. It also registers a
27shortcut for itself under the name "Composite".
28
29=head1 BUGS
30
31All complex software has bugs lurking in it, and this module is no
32exception. If you find a bug please either email me, or add the bug
33to cpan-RT.
34
35=head1 AUTHOR
36
37Paul Driver E<lt>frodwith@cpan.orgE<gt>
38
39=cut