more-docs
[gitmo/Moose-Autobox.git] / lib / Moose / Autobox / Item.pm
1 package Moose::Autobox::Item;     
2 use Moose::Role 'requires';
3
4 our $VERSION = '0.01';
5
6 requires 'defined';
7
8 1;
9
10 __END__
11
12 =pod
13
14 =head1 NAME 
15
16 Moose::Autobox::Item - the Item role
17
18 =head1 DESCRIPTION
19
20 This is the root of our role hierarchy. 
21
22 =head1 METHODS
23
24 =over 4
25
26 =item B<meta>
27
28 =back
29
30 =head1 REQUIRED METHODS
31
32 =over 4
33
34 =item B<defined>
35
36 =back
37
38 =head1 BUGS
39
40 All complex software has bugs lurking in it, and this module is no 
41 exception. If you find a bug please either email me, or add the bug
42 to cpan-RT.
43
44 =head1 AUTHOR
45
46 Stevan Little E<lt>stevan@iinteractive.comE<gt>
47
48 =head1 COPYRIGHT AND LICENSE
49
50 Copyright 2006 by Infinity Interactive, Inc.
51
52 L<http://www.iinteractive.com>
53
54 This library is free software; you can redistribute it and/or modify
55 it under the same terms as Perl itself.
56
57 =cut