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