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