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