Checking in changes prior to tagging of version 0.93. Changelog diff is:
[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.93';
8 $VERSION = eval $VERSION;
9 our $AUTHORITY = 'cpan:STEVAN';
10
11 use base "Class::MOP::Instance";
12
13 1;
14
15 __END__
16
17 =pod
18
19 =head1 NAME
20
21 Moose::Meta::Instance - The Moose Instance metaclass
22
23 =head1 SYNOPSIS
24
25     # nothing to see here
26
27 =head1 DESCRIPTION
28
29 This class provides the low level data storage abstractions for
30 attributes.
31
32 Using this API directly in your own code violates encapsulation, and
33 we recommend that you use the appropriate APIs in
34 L<Moose::Meta::Class> and L<Moose::Meta::Attribute> instead. Those
35 APIs in turn call the methods in this class as appropriate.
36
37 At present, this is an empty subclass of L<Class::MOP::Instance>, so
38 you should see that class for all API details.
39
40 =head1 INHERITANCE
41
42 C<Moose::Meta::Instance> is a subclass of L<Class::MOP::Instance>.
43
44 =head1 BUGS
45
46 All complex software has bugs lurking in it, and this module is no
47 exception. If you find a bug please either email me, or add the bug
48 to cpan-RT.
49
50 =head1 AUTHOR
51
52 Stevan Little E<lt>stevan@iinteractive.comE<gt>
53
54 Yuval Kogman E<lt>nothingmuch@woobling.comE<gt>
55
56 =head1 COPYRIGHT AND LICENSE
57
58 Copyright 2006-2009 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