- Moose::Autobox::Ref perl() as alias to dump()
[gitmo/Moose-Autobox.git] / lib / Moose / Autobox / Ref.pm
1 package Moose::Autobox::Ref;     
2 use Moose::Role 'with';
3
4 our $VERSION = '0.02';
5
6 with 'Moose::Autobox::Defined';
7
8 sub dump {
9     my $self = shift;
10     require Data::Dumper;
11     return Data::Dumper::Dumper($self);
12 }
13
14 *perl = *dump;
15
16 1;
17
18 __END__
19
20 =pod
21
22 =head1 NAME 
23
24 Moose::Autobox::Ref - the Ref role
25
26 =head1 DESCRIPTION
27
28 This is a role to describes a reference value. 
29
30 =head1 METHODS
31
32 =over 4
33
34 =item B<meta>
35
36 =item B<dump>
37
38 Calls Data::Dumper::Dumper.
39
40 =item B<perl>
41
42 Same as B<dump>. For symmetry with Perl6's .perl method.
43
44 =back
45
46 =head1 BUGS
47
48 All complex software has bugs lurking in it, and this module is no 
49 exception. If you find a bug please either email me, or add the bug
50 to cpan-RT.
51
52 =head1 AUTHOR
53
54 Stevan Little E<lt>stevan@iinteractive.comE<gt>
55
56 =head1 COPYRIGHT AND LICENSE
57
58 Copyright 2006 by Infinity Interactive, Inc.
59
60 L<http://www.iinteractive.com>
61
62 This library is free software; you can redistribute it and/or modify
63 it under the same terms as Perl itself.
64
65 =cut