adding the MooseX::MetaDescription stuff distilled from Ernst
[gitmo/MooseX-MetaDescription.git] / lib / MooseX / MetaDescription / Description / Attribute.pm
CommitLineData
c13295c8 1package MooseX::MetaDescription::Description::Attribute;
2use Moose;
3
4our $VERSION = '0.01';
5our $AUTHORITY = 'cpan:STEVAN';
6
7extends 'MooseX::MetaDescription::Description';
8
9has 'attribute' => (
10 is => 'ro',
11 does => 'MooseX::MetaDescription::Meta::Attribute::Trait',
12 weak_ref => 1,
13 required => 1,
14);
15
16no Moose; 1;
17
18__END__
19
20=pod
21
22=head1 NAME
23
24MooseX::MetaDescription::Description::Attribute - A Moosey solution to this problem
25
26=head1 SYNOPSIS
27
28 use MooseX::MetaDescription::Description::Attribute;
29
30=head1 DESCRIPTION
31
32=head1 METHODS
33
34=over 4
35
36=item B<>
37
38=back
39
40=head1 BUGS
41
42All complex software has bugs lurking in it, and this module is no
43exception. If you find a bug please either email me, or add the bug
44to cpan-RT.
45
46=head1 AUTHOR
47
48Stevan Little E<lt>stevan.little@iinteractive.comE<gt>
49
50=head1 COPYRIGHT AND LICENSE
51
52Copyright 2008 Infinity Interactive, Inc.
53
54L<http://www.iinteractive.com>
55
56This library is free software; you can redistribute it and/or modify
57it under the same terms as Perl itself.
58
59=cut