X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMouse.git;a=blobdiff_plain;f=lib%2FMouse%2FRole.pm;h=87ca482de2bde7bc65398a1cf3d1941133f6ae65;hp=0ae49170a51bd7c606145066e3dcd8e1341a4708;hb=b06ce1f502945c13a52c503f1a651fe92c91c773;hpb=9704fe9d256a2d4e4668beea554661c38ff63698 diff --git a/lib/Mouse/Role.pm b/lib/Mouse/Role.pm index 0ae4917..87ca482 100644 --- a/lib/Mouse/Role.pm +++ b/lib/Mouse/Role.pm @@ -1,11 +1,14 @@ package Mouse::Role; -use Mouse::Util qw(not_supported); # enables strict and warnings +use Mouse::Exporter; # enables strict and warnings -use Carp qw(confess); +our $VERSION = '0.40_01'; + +use Carp qw(confess); use Scalar::Util qw(blessed); +use Mouse::Util qw(not_supported); +use Mouse::Meta::Role; use Mouse (); -use Mouse::Exporter; Mouse::Exporter->setup_import_methods( as_is => [qw( @@ -138,6 +141,10 @@ __END__ Mouse::Role - The Mouse Role +=head1 VERSION + +This document describes Mouse version 0.40_01 + =head1 SYNOPSIS package MyRole;