X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMouse.git;a=blobdiff_plain;f=lib%2FMouse.pm;h=aaa5142d3f826cf0b33a3038610b0696d802988d;hp=b7cc5947c1b666a80967bb943e9583dae13e75c1;hb=ca861dd989ddc9868e5c69a39844e1e888bb9508;hpb=8b13ad670938085482d4878a032b005ee403cd6f diff --git a/lib/Mouse.pm b/lib/Mouse.pm index b7cc594..aaa5142 100644 --- a/lib/Mouse.pm +++ b/lib/Mouse.pm @@ -3,7 +3,7 @@ use 5.006_002; use Mouse::Exporter; # enables strict and warnings -our $VERSION = '0.40_09'; +our $VERSION = '0.42'; use Carp qw(confess); use Scalar::Util qw(blessed); @@ -157,7 +157,6 @@ sub init_meta { return $meta; } - 1; __END__ @@ -167,7 +166,7 @@ Mouse - Moose minus the antlers =head1 VERSION -This document describes Mouse version 0.40_09 +This document describes Mouse version 0.42 =head1 SYNOPSIS @@ -257,9 +256,11 @@ Installs a "before" method modifier. See L. =head2 C<< after (method|methods) => CodeRef >> Installs an "after" method modifier. See L. + =head2 C<< around (method|methods) => CodeRef >> Installs an "around" method modifier. See L. + =head2 C<< has (name|names) => parameters >> Adds an attribute (or if passed an arrayref of names, multiple attributes) to