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