3778917838d53d5ad3723bfd191c8de748f26f28
[gitmo/MooseX-MetaDescription.git] / lib / MooseX / MetaDescription / Meta / Class.pm
1 package MooseX::MetaDescription::Meta::Class;
2 use Moose;
3
4 our $VERSION   = '0.01';
5 our $AUTHORITY = 'cpan:STEVAN';
6
7 extends 'Moose::Meta::Class';
8    with 'MooseX::MetaDescription::Meta::Trait';
9
10 no Moose; 1;
11
12 __END__
13
14 =pod
15
16 =head1 NAME
17
18 MooseX::MetaDescription::Meta::Class - Custom class metaclass for meta-descriptions
19
20 =head1 DESCRIPTION
21
22 Nothing worth saying yet actually, mostly internal usage only. See the 
23 SYNPOSIS in L<MooseX::MetaDescription> for an example of usage.
24
25 =head1 BUGS
26
27 All complex software has bugs lurking in it, and this module is no
28 exception. If you find a bug please either email me, or add the bug
29 to cpan-RT.
30
31 =head1 AUTHOR
32
33 Stevan Little E<lt>stevan.little@iinteractive.comE<gt>
34
35 =head1 COPYRIGHT AND LICENSE
36
37 Copyright 2008 Infinity Interactive, Inc.
38
39 L<http://www.iinteractive.com>
40
41 This library is free software; you can redistribute it and/or modify
42 it under the same terms as Perl itself.
43
44 =cut