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