root/docs/hidek/moose-ja/Moose/Meta/Role/Method.pm @ 11999

Revision 11999, 0.8 kB (checked in by hidek, 5 years ago)

add hidek/docs w/moose-ja project

Line 
1
2package Moose::Meta::Role::Method;
3
4use strict;
5use warnings;
6
7our $VERSION   = '0.01';
8our $AUTHORITY = 'cpan:STEVAN';
9
10use base 'Class::MOP::Method';
11
121;
13
14__END__
15
16=pod
17
18=head1 NAME
19
20Moose::Meta::Role::Method - A Moose Method metaclass for Roles
21
22=head1 DESCRIPTION
23
24This is primarily used to mark methods coming from a role
25as being different. Right now it is nothing but a subclass
26of L<Class::MOP::Method>.
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
38=head1 COPYRIGHT AND LICENSE
39
40Copyright 2006-2008 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
47=cut
Note: See TracBrowser for help on using the browser.