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