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