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