X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMouse%2FSpec.pm;h=2f1eebcadb66d5c2a6c7396a9e7d2f2b4c8db8c5;hb=02d8cd0afb685d4a3b8e6dcf6e9deec01c9b9e6e;hp=999b04251d80590cb2b0649b39551747aeece232;hpb=ff012e5dfb18773f8c9108780b19a6d9b9b9efed;p=gitmo%2FMouse.git diff --git a/lib/Mouse/Spec.pm b/lib/Mouse/Spec.pm index 999b042..2f1eebc 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_06'; +our $VERSION = '0.40_01'; our $MouseVersion = $VERSION; our $MooseVersion = '0.90'; @@ -19,7 +19,14 @@ Mouse::Spec - To what extent Mouse is compatible with Moose =head1 VERSION -This document describes Mouse version 0.37_06 +This document describes Mouse version 0.40_01 + +=head1 SYNOPSIS + + use Mouse::Spec; + + printf "Mouse/%s is compatible with Moose/%s\n", + Mouse::Spec->MouseVersion, Mouse::Spec->MooseVersion; =head1 DESCRIPTION @@ -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 Mouse::Meta::Instance + +Meta instance mechanism is not implemented. -=head3 C +=head3 Role exclusion -Meta instance mechanism will not be implemented. +Role exclusion, C, is not implemented. + +=head3 -traits and -metaclass in Mouse::Exporter + +C<< use Mouse -traits => ... >> and C<< use Mouse -metaclass => ... >> are not +yet implemented. =head2 Notes about Moose::Cookbook @@ -114,5 +130,11 @@ L - Providing an alternate base object clas L +L + +L + +L + =cut