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