bump version to 0.65
[gitmo/Moose.git] / lib / Moose / Meta / Role / Method.pm
CommitLineData
39b3bc94 1
2package Moose::Meta::Role::Method;
3
4use strict;
5use warnings;
6
30350cb4 7our $VERSION = '0.65';
75b95414 8$VERSION = eval $VERSION;
d44714be 9our $AUTHORITY = 'cpan:STEVAN';
39b3bc94 10
fbdb609d 11use base 'Moose::Meta::Method';
39b3bc94 12
131;
14
15__END__
16
17=pod
18
19=head1 NAME
20
ecb59493 21Moose::Meta::Role::Method - A Moose Method metaclass for Roles
39b3bc94 22
23=head1 DESCRIPTION
24
ecb59493 25This is primarily used to mark methods coming from a role
26as being different. Right now it is nothing but a subclass
5cf3cd62 27of L<Moose::Meta::Method>.
39b3bc94 28
29=head1 BUGS
30
31All complex software has bugs lurking in it, and this module is no
32exception. If you find a bug please either email me, or add the bug
33to cpan-RT.
34
35=head1 AUTHOR
36
37Stevan Little E<lt>stevan@iinteractive.comE<gt>
38
39b3bc94 39=head1 COPYRIGHT AND LICENSE
40
778db3ac 41Copyright 2006-2008 by Infinity Interactive, Inc.
39b3bc94 42
43L<http://www.iinteractive.com>
44
45This library is free software; you can redistribute it and/or modify
46it under the same terms as Perl itself.
47
07b0f1a5 48=cut