adding 2007 to the copyright list
[gitmo/Moose.git] / lib / Moose / Meta / Method / Overriden.pm
1 package Moose::Meta::Method::Overriden;
2
3 use strict;
4 use warnings;
5
6 our $VERSION = '0.01';
7
8 use base 'Moose::Meta::Method';
9
10 1;
11
12 __END__
13
14 =pod
15
16 =head1 NAME
17
18 Moose::Meta::Method::Overriden - A Moose Method metaclass for overriden methods
19
20 =head1 DESCRIPTION
21
22 This is primarily used to tag methods created with the C<override> keyword. It 
23 is currently just a subclass of L<Moose::Meta::Method>. 
24
25 Later releases will likely encapsulate the C<super> behavior of overriden methods, 
26 rather than that being the responsibility of the class. But this is low priority
27 for now.
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, 2007 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