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