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