fixing the authors lists and adding the ClassName type constraint
[gitmo/Moose.git] / lib / Moose / Meta / Method.pm
1 package Moose::Meta::Method;
2
3 use strict;
4 use warnings;
5
6 our $VERSION   = '0.01';
7 our $AUTHORITY = 'cpan:STEVAN';
8
9 use base 'Class::MOP::Method';
10
11 1;
12
13 __END__
14
15 =pod
16
17 =head1 NAME
18
19 Moose::Meta::Method - A Moose Method metaclass
20
21 =head1 DESCRIPTION
22
23 For now, this is nothing but a subclass of Class::MOP::Method, 
24 but with the expanding role of the method sub-protocol, it might 
25 be more useful later on. 
26
27 =head1 BUGS
28
29 All complex software has bugs lurking in it, and this module is no 
30 exception. If you find a bug please either email me, or add the bug
31 to cpan-RT.
32
33 =head1 AUTHOR
34
35 Stevan Little E<lt>stevan@iinteractive.comE<gt>
36
37 =head1 COPYRIGHT AND LICENSE
38
39 Copyright 2006, 2007 by Infinity Interactive, Inc.
40
41 L<http://www.iinteractive.com>
42
43 This library is free software; you can redistribute it and/or modify
44 it under the same terms as Perl itself.
45
46 =cut