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