bump version to 0.91
[gitmo/Moose.git] / lib / Moose / Meta / Class / Immutable / Trait.pm
CommitLineData
0fa70d03 1package Moose::Meta::Class::Immutable::Trait;
2
3use strict;
4use warnings;
5
6use Class::MOP;
7
113d3174 8our $VERSION = '0.91';
16c237c1 9$VERSION = eval $VERSION;
10our $AUTHORITY = 'cpan:STEVAN';
11
0fa70d03 12use base 'Class::MOP::Class::Immutable::Trait';
13
d9205410 14sub add_role { $_[1]->_immutable_cannot_call }
0fa70d03 15
aaf4b735 16sub calculate_all_roles {
d9205410 17 my $orig = shift;
18 my $self = shift;
19 @{ $self->{__immutable}{calculate_all_roles} ||= [ $self->$orig ] };
aaf4b735 20}
0fa70d03 21
221;
2dc27d6f 23
24__END__
25
26=pod
27
28=head1 NAME
29
30Moose::Meta::Class::Immutable::Trait - Implements immutability for metaclass objects
31
32=head1 DESCRIPTION
33
34This class makes some Moose-specific metaclass methods immutable. This
35is deep guts.
36
37=head1 AUTHOR
38
39Yuval Kogman E<lt>nothingmuch@cpan.orgE<gt>
40
41=head1 COPYRIGHT AND LICENSE
42
43Copyright 2009 by Infinity Interactive, Inc.
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.
49
50=cut
51