eca1c933887a1c73e590831676c37ce027715034
[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::Attribute::Trait';
9
10 no Moose; 1;
11
12 __END__
13
14 =pod
15
16 =head1 NAME
17
18 MooseX::MetaDescription::Meta::Class - A Moosey solution to this problem
19
20 =head1 SYNOPSIS
21
22   use MooseX::MetaDescription::Meta::Class;
23
24 =head1 DESCRIPTION
25
26 =head1 METHODS
27
28 =over 4
29
30 =item B<>
31
32 =back
33
34 =head1 BUGS
35
36 All complex software has bugs lurking in it, and this module is no
37 exception. If you find a bug please either email me, or add the bug
38 to cpan-RT.
39
40 =head1 AUTHOR
41
42 Stevan Little E<lt>stevan.little@iinteractive.comE<gt>
43
44 =head1 COPYRIGHT AND LICENSE
45
46 Copyright 2008 Infinity Interactive, Inc.
47
48 L<http://www.iinteractive.com>
49
50 This library is free software; you can redistribute it and/or modify
51 it under the same terms as Perl itself.
52
53 =cut