Implement the "eval $VERSION" trick from perlmodstyle so CPAN doesn't
[gitmo/Moose.git] / lib / Moose / Meta / Method.pm
CommitLineData
8ee73eeb 1package Moose::Meta::Method;
2
3use strict;
4use warnings;
5
75b95414 6our $VERSION = '0.55_01';
7$VERSION = eval $VERSION;
d44714be 8our $AUTHORITY = 'cpan:STEVAN';
8ee73eeb 9
10use base 'Class::MOP::Method';
11
121;
13
14__END__
15
16=pod
17
39b3bc94 18=head1 NAME
19
ecb59493 20Moose::Meta::Method - A Moose Method metaclass
39b3bc94 21
22=head1 DESCRIPTION
23
ecb59493 24For now, this is nothing but a subclass of Class::MOP::Method,
25but with the expanding role of the method sub-protocol, it might
26be more useful later on.
39b3bc94 27
28=head1 BUGS
29
30All complex software has bugs lurking in it, and this module is no
31exception. If you find a bug please either email me, or add the bug
32to cpan-RT.
33
34=head1 AUTHOR
35
36Stevan Little E<lt>stevan@iinteractive.comE<gt>
37
39b3bc94 38=head1 COPYRIGHT AND LICENSE
39
778db3ac 40Copyright 2006-2008 by Infinity Interactive, Inc.
39b3bc94 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
07b0f1a5 47=cut