b95973d11746267646d55be4a8c24823f2ca8c67
[gitmo/Moose.git] / lib / Moose / Meta / Role / Method.pm
1
2 package Moose::Meta::Role::Method;
3
4 use strict;
5 use warnings;
6
7 our $VERSION = '0.01';
8
9 use base 'Class::MOP::Method';
10
11 1;
12
13 __END__
14
15 =pod
16
17 =head1 NAME
18
19 =head1 SYNOPOSIS
20
21 =head1 DESCRIPTION
22
23 =head1 METHODS
24
25 =over 4
26
27 =back
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 Yuval Kogman E<lt>nothingmuch@woobling.comE<gt>
40
41 =head1 COPYRIGHT AND LICENSE
42
43 Copyright 2006 by Infinity Interactive, Inc.
44
45 L<http://www.iinteractive.com>
46
47 This library is free software; you can redistribute it and/or modify
48 it under the same terms as Perl itself.
49
50 =cut