X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMouse%2FSpec.pm;h=99dabca734952c83bda5859b48a50e850fd35729;hb=4f74e488e9d376f9def450da059e9a45d2870049;hp=2a2dd7ac6cc67370fbdf1fb6ba716040529bf3a5;hpb=7fc043cc981de12e62ece2868f6315292d85eeab;p=gitmo%2FMouse.git diff --git a/lib/Mouse/Spec.pm b/lib/Mouse/Spec.pm index 2a2dd7a..99dabca 100644 --- a/lib/Mouse/Spec.pm +++ b/lib/Mouse/Spec.pm @@ -2,7 +2,7 @@ package Mouse::Spec; use strict; use warnings; -our $VERSION = '0.37_04'; +our $VERSION = '0.37_06'; our $MouseVersion = $VERSION; our $MooseVersion = '0.90'; @@ -17,8 +17,36 @@ __END__ Mouse::Spec - To what extent Mouse is compatible with Moose +=head1 VERSION + +This document describes Mouse version 0.37_06 + =head1 DESCRIPTION +(TODO) + +=head2 Compatibility with Moose + +=head2 Incompatibility with Moose + +=head3 Meta object protocols + +Any MOP has no attributes, so +C<< $metaclass->meta->make_immutable() >> will not yet work as you expect. + +=head3 C + +Meta instance mechanism is not implemented. + +=head3 Role exclusion + +Role exclusion, C, is not implemented. + +=head3 C<-traits> and C<-metaclass> in Mouse::Exporter + +C<< use Mouse -traits => ... >> and C<< use Mouse -metaclass => ... >> are not +yet implemented. + =head2 Notes about Moose::Cookbook Many recipes in L fit L, including: @@ -71,7 +99,7 @@ L - The Moose::Role example =item * -L - Advanced Role Composition - method exclusion and aliasin +L - Advanced Role Composition - method exclusion and aliasing =item *