inheriting class desc
[gitmo/MooseX-MetaDescription.git] / lib / MooseX / MetaDescription / Meta / Attribute.pm
CommitLineData
c13295c8 1package MooseX::MetaDescription::Meta::Attribute;
2use Moose;
3
4our $VERSION = '0.01';
5our $AUTHORITY = 'cpan:STEVAN';
6
7extends 'Moose::Meta::Attribute';
b70e06c6 8 with 'MooseX::MetaDescription::Meta::Trait';
c13295c8 9
10no Moose; 1;
11
12__END__
13
14=pod
15
16=head1 NAME
17
d253607a 18MooseX::MetaDescription::Meta::Attribute - Custom attribute metaclass for meta-descriptions
c13295c8 19
20=head1 DESCRIPTION
21
d253607a 22Nothing worth saying yet actually, mostly internal usage only. See the
23SYNPOSIS in L<MooseX::MetaDescription> for an example of usage.
c13295c8 24
25=head1 BUGS
26
27All complex software has bugs lurking in it, and this module is no
28exception. If you find a bug please either email me, or add the bug
29to cpan-RT.
30
31=head1 AUTHOR
32
33Stevan Little E<lt>stevan.little@iinteractive.comE<gt>
34
35=head1 COPYRIGHT AND LICENSE
36
37Copyright 2008 Infinity Interactive, Inc.
38
39L<http://www.iinteractive.com>
40
41This library is free software; you can redistribute it and/or modify
42it under the same terms as Perl itself.
43
44=cut