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