bump version to 0.66
[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.66';
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 attributes.
30
31 Using this API generally violates attribute encapsulation and is not
32 recommended, instead look at L<Class::MOP::Attribute/get_value>,
33 L<Class::MOP::Attribute/set_value>, etc, as well as L<Moose::Meta::Attribute>
34 for the recommended way to fiddle with attribute values in a generic way,
35 independent of how/whether accessors have been defined. Accessors can be found
36 using L<Class::MOP::Class/get_attribute>.
37
38 See the L<Class::MOP::Instance> docs for details on the instance protocol.
39
40 =head1 BUGS
41
42 All complex software has bugs lurking in it, and this module is no 
43 exception. If you find a bug please either email me, or add the bug
44 to cpan-RT.
45
46 =head1 AUTHOR
47
48 Stevan Little E<lt>stevan@iinteractive.comE<gt>
49
50 Yuval Kogman E<lt>nothingmuch@woobling.comE<gt>
51
52 =head1 COPYRIGHT AND LICENSE
53
54 Copyright 2006-2009 by Infinity Interactive, Inc.
55
56 L<http://www.iinteractive.com>
57
58 This library is free software; you can redistribute it and/or modify
59 it under the same terms as Perl itself. 
60
61 =cut