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