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