adding the MooseX::MetaDescription stuff distilled from Ernst
[gitmo/MooseX-MetaDescription.git] / lib / MooseX / MetaDescription.pm
1 package MooseX::MetaDescription;
2 use Moose;
3
4 use MooseX::MetaDescription::Meta::Class;
5 use MooseX::MetaDescription::Meta::Attribute;
6
7 our $VERSION   = '0.01';
8 our $AUTHORITY = 'cpan:STEVAN';
9
10 no Moose; 1;
11
12 __END__
13
14 =pod
15
16 =head1 NAME
17
18 MooseX::MetaDescription - A Moosey solution to this problem
19
20 =head1 SYNOPSIS
21
22   use MooseX::MetaDescription;
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