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