0.15
[gitmo/Moose.git] / lib / Moose / Meta / Role / Method.pm
CommitLineData
39b3bc94 1
2package Moose::Meta::Role::Method;
3
4use strict;
5use warnings;
6
7our $VERSION = '0.01';
8
9use base 'Class::MOP::Method';
10
111;
12
13__END__
14
15=pod
16
17=head1 NAME
18
ecb59493 19Moose::Meta::Role::Method - A Moose Method metaclass for Roles
39b3bc94 20
21=head1 DESCRIPTION
22
ecb59493 23This is primarily used to mark methods coming from a role
24as being different. Right now it is nothing but a subclass
25of L<Class::MOP::Method>.
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
37Yuval Kogman E<lt>nothingmuch@woobling.comE<gt>
38
39=head1 COPYRIGHT AND LICENSE
40
41Copyright 2006 by Infinity Interactive, Inc.
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
48=cut