X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FClass%2FMOP%2FMixin%2FHasMethods.pm;h=e8eb4c7ec06aba243b6ca247a044319fbc5319f8;hb=c871d3eac7cc21ad8dbe6169100feb0514dc4837;hp=82abbcce06541f1bd4206647422165b931fae0f1;hpb=3c688b21fd9c4187a8f8b81bec3ff570367d9c2e;p=gitmo%2FClass-MOP.git diff --git a/lib/Class/MOP/Mixin/HasMethods.pm b/lib/Class/MOP/Mixin/HasMethods.pm index 82abbcc..e8eb4c7 100644 --- a/lib/Class/MOP/Mixin/HasMethods.pm +++ b/lib/Class/MOP/Mixin/HasMethods.pm @@ -3,6 +3,10 @@ package Class::MOP::Mixin::HasMethods; use strict; use warnings; +our $VERSION = '0.97'; +$VERSION = eval $VERSION; +our $AUTHORITY = 'cpan:STEVAN'; + use Scalar::Util 'blessed'; use Carp 'confess'; use Sub::Name 'subname'; @@ -148,3 +152,32 @@ sub get_method_list { } 1; + +__END__ + +=pod + +=head1 NAME + +Class::MOP::Mixin::HasMethods - Methods for metaclasses which have methods + +=head1 DESCRIPTION + +This class implements methods for metaclasses which have methods +(L and L). See L +for API details. + +=head1 AUTHORS + +Dave Rolsky Eautarch@urth.orgE + +=head1 COPYRIGHT AND LICENSE + +Copyright 2006-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