Checking in changes prior to tagging of version 0.4501. Changelog diff is:
[gitmo/Mouse.git] / lib / Mouse / Meta / Role / Method.pm
CommitLineData
bc71de54 1package Mouse::Meta::Role::Method;
bc69ee88 2use Mouse::Util; # enables strict and warnings
bc71de54 3
f3bb863f 4use Mouse::Meta::Method;
5our @ISA = qw(Mouse::Meta::Method);
bc71de54 6
e78cd29d 7sub _new{
8 my($class, %args) = @_;
9 my $self = bless \%args, $class;
10
11 if($class ne __PACKAGE__){
12 $self->meta->_initialize_object($self, \%args);
13 }
14 return $self;
9010458d 15}
16
bc71de54 171;
bc71de54 18__END__
19
1820fffe 20=head1 NAME
21
22Mouse::Meta::Role::Method - A Mouse Method metaclass for Roles
23
a25ca8d6 24=head1 VERSION
25
267711f7 26This document describes Mouse version 0.4501
a25ca8d6 27
1820fffe 28=head1 SEE ALSO
29
30L<Moose::Meta::Role::Method>
31
32=cut
33