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