more refactoring to roles
[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',
9 required => 1,
10);
11
c13295c8 12no Moose; 1;
13
14__END__
15
16=pod
17
18=head1 NAME
19
20MooseX::MetaDescription::Description - A Moosey solution to this problem
21
22=head1 SYNOPSIS
23
24 use MooseX::MetaDescription::Description;
25
26=head1 DESCRIPTION
27
28=head1 METHODS
29
30=over 4
31
32=item B<>
33
34=back
35
36=head1 BUGS
37
38All complex software has bugs lurking in it, and this module is no
39exception. If you find a bug please either email me, or add the bug
40to cpan-RT.
41
42=head1 AUTHOR
43
44Stevan Little E<lt>stevan.little@iinteractive.comE<gt>
45
46=head1 COPYRIGHT AND LICENSE
47
48Copyright 2008 Infinity Interactive, Inc.
49
50L<http://www.iinteractive.com>
51
52This library is free software; you can redistribute it and/or modify
53it under the same terms as Perl itself.
54
55=cut