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