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