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