moving stuff around and some cleanup
[gitmo/Moose.git] / lib / Moose / Meta / Instance.pm
CommitLineData
7aad237e 1
2package Moose::Meta::Instance;
3
4use strict;
5use warnings;
6
d44714be 7our $VERSION = '0.01';
8our $AUTHORITY = 'cpan:STEVAN';
7aad237e 9
10use base "Class::MOP::Instance";
7aad237e 11
ac1ef2f9 121;
13
14__END__
15
16=pod
17
18=head1 NAME
19
20Moose::Meta::Instance - The Moose Instance metaclass
21
22=head1 DESCRIPTION
23
9e93dd19 24This is a stub mostly, but I know I will want to use it later on.
25
26See the L<Class::MOP::Instance> docs for details on the instance
27protocol.
ac1ef2f9 28
29=head1 BUGS
30
31All complex software has bugs lurking in it, and this module is no
32exception. If you find a bug please either email me, or add the bug
33to cpan-RT.
34
35=head1 AUTHOR
36
37Stevan Little E<lt>stevan@iinteractive.comE<gt>
38
98aae381 39Yuval Kogman E<lt>nothingmuch@woobling.comE<gt>
40
ac1ef2f9 41=head1 COPYRIGHT AND LICENSE
42
b77fdbed 43Copyright 2006, 2007 by Infinity Interactive, Inc.
ac1ef2f9 44
45L<http://www.iinteractive.com>
46
47This library is free software; you can redistribute it and/or modify
48it under the same terms as Perl itself.
7aad237e 49
ac1ef2f9 50=cut