X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMouse.git;a=blobdiff_plain;f=lib%2FMouse%2FSpec.pm;h=52bfec111eabd3f42efc38b9880df451e516e3a7;hp=999b04251d80590cb2b0649b39551747aeece232;hb=f7e41edaceee0d549a2d664378cfcf85dcf9454b;hpb=ff012e5dfb18773f8c9108780b19a6d9b9b9efed diff --git a/lib/Mouse/Spec.pm b/lib/Mouse/Spec.pm index 999b042..52bfec1 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.37_06'; +our $VERSION = '0.40_08'; our $MouseVersion = $VERSION; -our $MooseVersion = '0.90'; +our $MooseVersion = '0.93'; sub MouseVersion{ $MouseVersion } sub MooseVersion{ $MooseVersion } @@ -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_08 + +=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