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