Use add_conflicted_method instead of add_required_methods where
[gitmo/Moose.git] / lib / Moose / Meta / Role / Method / Conflicted.pm
CommitLineData
eec8ca8a 1
2package Moose::Meta::Role::Method::Conflicted;
3
4use strict;
5use warnings;
6
7use base qw(Moose::Meta::Role::Method::Required);
8
9our $VERSION = '0.79';
10$VERSION = eval $VERSION;
11our $AUTHORITY = 'cpan:STEVAN';
12
13__PACKAGE__->meta->add_attribute('roles' => (reader => 'roles'));
14
151;
16
17__END__
18
19=pod
20
21=head1 NAME
22
23Moose::Meta::Role::Method::Conflicted - A Moose metaclass for conflicted methods in Roles
24
25=head1 DESCRIPTION
26
27=head1 INHERITANCE
28
29C<Moose::Meta::Role::Method::Conflicted> is a subclass of
30L<Moose::Meta::Role::Method::Required>.
31
32=head1 BUGS
33
34All complex software has bugs lurking in it, and this module is no
35exception. If you find a bug please either email me, or add the bug
36to cpan-RT.
37
38=head1 AUTHOR
39
40Stevan Little E<lt>stevan@iinteractive.comE<gt>
41
42=head1 COPYRIGHT AND LICENSE
43
44Copyright 2006-2009 by Infinity Interactive, Inc.
45
46L<http://www.iinteractive.com>
47
48This library is free software; you can redistribute it and/or modify
49it under the same terms as Perl itself.
50
51=cut