updating copyright dates
[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 our $AUTHORITY = 'cpan:STEVAN';
8
9 use base 'Moose::Meta::Method';
10
11 1;
12
13 __END__
14
15 =pod
16
17 =head1 NAME
18
19 Moose::Meta::Method::Overriden - A Moose Method metaclass for overriden methods
20
21 =head1 DESCRIPTION
22
23 This is primarily used to tag methods created with the C<override> keyword. It 
24 is currently just a subclass of L<Moose::Meta::Method>. 
25
26 Later releases will likely encapsulate the C<super> behavior of overriden methods, 
27 rather than that being the responsibility of the class. But this is low priority
28 for now.
29
30 =head1 BUGS
31
32 All complex software has bugs lurking in it, and this module is no 
33 exception. If you find a bug please either email me, or add the bug
34 to cpan-RT.
35
36 =head1 AUTHOR
37
38 Stevan Little E<lt>stevan@iinteractive.comE<gt>
39
40 =head1 COPYRIGHT AND LICENSE
41
42 Copyright 2006-2008 by Infinity Interactive, Inc.
43
44 L<http://www.iinteractive.com>
45
46 This library is free software; you can redistribute it and/or modify
47 it under the same terms as Perl itself.
48
49 =cut