svk!
[gitmo/MooseX-MetaDescription.git] / blib / lib / MooseX / MetaDescription / Meta / Class.pm
CommitLineData
b7cd1593 1package MooseX::MetaDescription::Meta::Class;
2use Moose;
3
4our $VERSION = '0.01';
5our $AUTHORITY = 'cpan:STEVAN';
6
7extends 'Moose::Meta::Class';
8 with 'MooseX::MetaDescription::Meta::Trait';
9
10no Moose; 1;
11
12__END__
13
14=pod
15
16=head1 NAME
17
18MooseX::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
36All complex software has bugs lurking in it, and this module is no
37exception. If you find a bug please either email me, or add the bug
38to cpan-RT.
39
40=head1 AUTHOR
41
42Stevan Little E<lt>stevan.little@iinteractive.comE<gt>
43
44=head1 COPYRIGHT AND LICENSE
45
46Copyright 2008 Infinity Interactive, Inc.
47
48L<http://www.iinteractive.com>
49
50This library is free software; you can redistribute it and/or modify
51it under the same terms as Perl itself.
52
53=cut