whops, I dont think I commited this
[gitmo/MooseX-MetaDescription.git] / lib / MooseX / MetaDescription.pm
CommitLineData
c13295c8 1package MooseX::MetaDescription;
2use Moose;
3
91297cb4 4our $VERSION = '0.01';
5our $AUTHORITY = 'cpan:STEVAN';
6
c13295c8 7use MooseX::MetaDescription::Meta::Class;
8use MooseX::MetaDescription::Meta::Attribute;
5d49532a 9use MooseX::MetaDescription::Description;
c13295c8 10
c13295c8 11no Moose; 1;
12
13__END__
14
15=pod
16
17=head1 NAME
18
48b1f986 19MooseX::MetaDescription - A framework for adding additional metadata to Moose classes
c13295c8 20
21=head1 SYNOPSIS
22
23 use MooseX::MetaDescription;
24
25=head1 DESCRIPTION
26
27=head1 METHODS
28
29=over 4
30
31=item B<>
32
33=back
34
35=head1 BUGS
36
37All complex software has bugs lurking in it, and this module is no
38exception. If you find a bug please either email me, or add the bug
39to cpan-RT.
40
41=head1 AUTHOR
42
48b1f986 43Code and Design originally by Jonathan Rockway in the Ernst module,
44extracted and refactored by:
45
c13295c8 46Stevan Little E<lt>stevan.little@iinteractive.comE<gt>
47
48=head1 COPYRIGHT AND LICENSE
49
50Copyright 2008 Infinity Interactive, Inc.
51
52L<http://www.iinteractive.com>
53
54This library is free software; you can redistribute it and/or modify
55it under the same terms as Perl itself.
56
57=cut