0.15
[gitmo/Moose.git] / lib / Moose / Meta / Method.pm
CommitLineData
8ee73eeb 1package Moose::Meta::Method;
2
3use strict;
4use warnings;
5
6our $VERSION = '0.01';
7
8use base 'Class::MOP::Method';
9
101;
11
12__END__
13
14=pod
15
39b3bc94 16=head1 NAME
17
ecb59493 18Moose::Meta::Method - A Moose Method metaclass
39b3bc94 19
20=head1 DESCRIPTION
21
ecb59493 22For now, this is nothing but a subclass of Class::MOP::Method,
23but with the expanding role of the method sub-protocol, it might
24be more useful later on.
39b3bc94 25
26=head1 BUGS
27
28All complex software has bugs lurking in it, and this module is no
29exception. If you find a bug please either email me, or add the bug
30to cpan-RT.
31
32=head1 AUTHOR
33
34Stevan Little E<lt>stevan@iinteractive.comE<gt>
35
36Yuval Kogman E<lt>nothingmuch@woobling.comE<gt>
37
38=head1 COPYRIGHT AND LICENSE
39
40Copyright 2006 by Infinity Interactive, Inc.
41
42L<http://www.iinteractive.com>
43
44This library is free software; you can redistribute it and/or modify
45it under the same terms as Perl itself.
46
8ee73eeb 47=cut