even more refactoring
[gitmo/MooseX-MetaDescription.git] / lib / MooseX / MetaDescription / Description.pm
CommitLineData
c13295c8 1package MooseX::MetaDescription::Description;
2use Moose;
3
32039444 4# need the type loaded ...
5use MooseX::MetaDescription::Meta::Role::HasMetaDescription;
6
c13295c8 7our $VERSION = '0.01';
8our $AUTHORITY = 'cpan:STEVAN';
9
de7ba0e9 10has 'descriptor' => (
11 is => 'ro',
32039444 12 does => 'MooseX::MetaDescription::Meta::Role::HasMetaDescription',
13 weak_ref => 1,
de7ba0e9 14 required => 1,
15);
16
c13295c8 17no Moose; 1;
18
19__END__
20
21=pod
22
23=head1 NAME
24
25MooseX::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
43All complex software has bugs lurking in it, and this module is no
44exception. If you find a bug please either email me, or add the bug
45to cpan-RT.
46
47=head1 AUTHOR
48
49Stevan Little E<lt>stevan.little@iinteractive.comE<gt>
50
51=head1 COPYRIGHT AND LICENSE
52
53Copyright 2008 Infinity Interactive, Inc.
54
55L<http://www.iinteractive.com>
56
57This library is free software; you can redistribute it and/or modify
58it under the same terms as Perl itself.
59
60=cut