adding 2007 to the copyright list
[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 Moose::Meta::Role::Method - A Moose Method metaclass for Roles
20
21 =head1 DESCRIPTION
22
23 This is primarily used to mark methods coming from a role 
24 as being different. Right now it is nothing but a subclass
25 of L<Class::MOP::Method>.
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 Yuval Kogman E<lt>nothingmuch@woobling.comE<gt>
38
39 =head1 COPYRIGHT AND LICENSE
40
41 Copyright 2006, 2007 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