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