X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMouse%2FSpec.pm;h=f1d4e463df4ddde7b06f898409f517e5ad86f591;hb=976891fa65917adee2f69e6e4e2af20dffab0afa;hp=999b04251d80590cb2b0649b39551747aeece232;hpb=ff012e5dfb18773f8c9108780b19a6d9b9b9efed;p=gitmo%2FMouse.git diff --git a/lib/Mouse/Spec.pm b/lib/Mouse/Spec.pm index 999b042..f1d4e46 100644 --- a/lib/Mouse/Spec.pm +++ b/lib/Mouse/Spec.pm @@ -21,6 +21,13 @@ Mouse::Spec - To what extent Mouse is compatible with Moose This document describes Mouse version 0.37_06 +=head1 SYNOPSIS + + use Mouse::Spec; + + printf "Mouse/%s is compatible with Moose/%s\n", + Mouse::Spec->MouseVersion, Mouse::Spec->MooseVersion; + =head1 DESCRIPTION (TODO) @@ -31,12 +38,21 @@ This document describes Mouse version 0.37_06 =head3 Meta object protocols -Currently any MOP has no attributes, so -C<< $metaclass->meta->make_immutable() >> will not work as you expect. +Any MOP has no attributes, so +C<< $metaclass->meta->make_immutable() >> does not yet work as you expect. =head3 C -Meta instance mechanism will not be implemented. +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