don't use compute_all_applicable_methods anymore
[gitmo/Moose.git] / lib / Moose / Meta / Role / Method / Required.pm
CommitLineData
faa0f968 1
2package Moose::Meta::Role::Method::Required;
3
4use strict;
5use warnings;
6
a94188ac 7our $VERSION = '0.56';
faa0f968 8our $AUTHORITY = 'cpan:STEVAN';
9
d67145ed 10use base 'Moose::Meta::Role::Method';
11
faa0f968 121;
13
14__END__
15
16=pod
17
18=head1 NAME
19
20Moose::Meta::Role::Method::Required - A Moose metaclass for required methods in Roles
21
22=head1 DESCRIPTION
23
24=head1 BUGS
25
26All complex software has bugs lurking in it, and this module is no
27exception. If you find a bug please either email me, or add the bug
28to cpan-RT.
29
30=head1 AUTHOR
31
32Stevan Little E<lt>stevan@iinteractive.comE<gt>
33
34=head1 COPYRIGHT AND LICENSE
35
778db3ac 36Copyright 2006-2008 by Infinity Interactive, Inc.
faa0f968 37
38L<http://www.iinteractive.com>
39
40This library is free software; you can redistribute it and/or modify
41it under the same terms as Perl itself.
42
07b0f1a5 43=cut