0cb20926849f6c699939d0370bbf2c438ae5ab52
[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 SYNOPOSIS
19
20   use Moose::Autobox;
21   use autobox;
22
23 =head1 DESCRIPTION
24
25 =head1 METHODS
26
27 =over 4
28
29 =item B<meta>
30
31 =back
32
33 =head1 REQUIRED METHODS
34
35 =over 4
36
37 =item B<defined>
38
39 =back
40
41 =head1 BUGS
42
43 All complex software has bugs lurking in it, and this module is no 
44 exception. If you find a bug please either email me, or add the bug
45 to cpan-RT.
46
47 =head1 AUTHOR
48
49 Stevan Little E<lt>stevan@iinteractive.comE<gt>
50
51 =head1 COPYRIGHT AND LICENSE
52
53 Copyright 2006 by Infinity Interactive, Inc.
54
55 L<http://www.iinteractive.com>
56
57 This library is free software; you can redistribute it and/or modify
58 it under the same terms as Perl itself.
59
60 =cut