X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMouse%2FSpec.pm;h=09c2b534dbe88795cdbe4bcc9e72cd311a921c1e;hb=31aa6299ca20515174f1b145e5b3d4dbd9e09a08;hp=87ad8e849e3447381381a0305c8f2b8386588d33;hpb=d58887328353bfd216406ff7d686b5a4877d1731;p=gitmo%2FMouse.git diff --git a/lib/Mouse/Spec.pm b/lib/Mouse/Spec.pm index 87ad8e8..09c2b53 100644 --- a/lib/Mouse/Spec.pm +++ b/lib/Mouse/Spec.pm @@ -2,10 +2,10 @@ package Mouse::Spec; use strict; use warnings; -our $VERSION = '0.68'; +our $VERSION = '0.95'; our $MouseVersion = $VERSION; -our $MooseVersion = '1.10'; +our $MooseVersion = '1.13'; sub MouseVersion{ $MouseVersion } sub MooseVersion{ $MooseVersion } @@ -19,7 +19,7 @@ Mouse::Spec - To what extent Mouse is compatible with Moose =head1 VERSION -This document describes Mouse version 0.68 +This document describes Mouse version 0.95 =head1 SYNOPSIS @@ -35,10 +35,10 @@ compatible (and incompatible) with Moose. =head2 Compatibility with Moose -The sugary API is highly compatible with Moose. Methods which have the -same name as Moose's are expected to be compatible with Moose's. +=head3 Sugary APIs -=head2 Incompatibility with Moose +The sugary APIs are highly compatible with Moose. Methods which have the +same name as Moose's are expected to be compatible with Moose's. =head3 Meta object protocols @@ -47,13 +47,15 @@ Their methods which have the same name as Moose's are expected to be compatible with Moose's. Feel free to use these methods even if they are not documented. -However, meta object protocols in Mouse have no attributes by default, +However, there are differences between Moose's MOP and Mouse's. +For example, meta object protocols in Mouse have no attributes by default, so C<< $metaclass->meta->make_immutable() >> will not work as you expect. B. =head3 Mouse::Meta::Instance -Meta instance mechanism is not implemented. +Meta instance mechanism is not implemented, so you cannot change the reftype +of Mouse objects in the same way as Moose. =head3 Role exclusion