X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMoose%2FMeta%2FMethod%2FDelegation.pm;h=32436d6844c2d513b5e6ec56056ec8a48da05e6b;hb=d1ef0daf972b8d8a599b4e37b724702025647543;hp=be42ec92e56f0f2393eec61819ded1ce4a94bc46;hpb=1c7518d411958aa1651b82bbc8238265c6248f75;p=gitmo%2FMoose.git diff --git a/lib/Moose/Meta/Method/Delegation.pm b/lib/Moose/Meta/Method/Delegation.pm index be42ec9..32436d6 100644 --- a/lib/Moose/Meta/Method/Delegation.pm +++ b/lib/Moose/Meta/Method/Delegation.pm @@ -7,10 +7,6 @@ use warnings; use Carp 'confess'; use Scalar::Util 'blessed', 'weaken'; -our $VERSION = '1.13'; -$VERSION = eval $VERSION; -our $AUTHORITY = 'cpan:STEVAN'; - use base 'Moose::Meta::Method', 'Class::MOP::Method::Generated'; @@ -133,14 +129,12 @@ sub _get_delegate_accessor { 1; +# ABSTRACT: A Moose Method metaclass for delegation methods + __END__ =pod -=head1 NAME - -Moose::Meta::Method::Delegation - A Moose Method metaclass for delegation methods - =head1 DESCRIPTION This is a subclass of L for delegation @@ -192,17 +186,4 @@ constructor. See L for details on reporting bugs. -=head1 AUTHOR - -Dave Rolsky Eautarch@urth.orgE - -=head1 COPYRIGHT AND LICENSE - -Copyright 2009 by Infinity Interactive, Inc. - -L - -This library is free software; you can redistribute it and/or modify -it under the same terms as Perl itself. - =cut