X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMoose%2FMeta%2FRole%2FApplication%2FToRole.pm;h=54979f533d11fbfa052c153048cf42dcab1f519e;hb=bf46ee52709c38edc600f24ceb3a334d2c90965e;hp=db760aa1e6502831fbf8a84ef796e44a0c2ae536;hpb=55d05fb16429c2150b5337b1a0130ae334e129d0;p=gitmo%2FMoose.git diff --git a/lib/Moose/Meta/Role/Application/ToRole.pm b/lib/Moose/Meta/Role/Application/ToRole.pm index db760aa..54979f5 100644 --- a/lib/Moose/Meta/Role/Application/ToRole.pm +++ b/lib/Moose/Meta/Role/Application/ToRole.pm @@ -6,15 +6,17 @@ use metaclass; use Scalar::Util 'blessed'; -our $VERSION = '1.12'; -$VERSION = eval $VERSION; -our $AUTHORITY = 'cpan:STEVAN'; - use base 'Moose::Meta::Role::Application'; sub apply { my ($self, $role1, $role2) = @_; + + # We're not checking for role names to support multiple instances of the + # same Parameterized role. + return if grep { $role1 == $_ } @{ $role2->get_roles() }; + $self->SUPER::apply($role1, $role2); + $role2->add_role($role1); } @@ -27,7 +29,7 @@ sub check_role_exclusions { foreach my $excluded_role_name ($role1->get_excluded_roles_list) { if ( $role2->does_role($excluded_role_name) ) { require Moose; - Moose->throw_error("The class " . $role2->name . " does the excluded role '$excluded_role_name'"); + Moose->throw_error("The role " . $role2->name . " does the excluded role '$excluded_role_name'"); } $role2->add_excluded_roles($excluded_role_name); } @@ -57,9 +59,15 @@ sub apply_attributes { # make sure we haven't seen this one already too $role2->get_attribute($attribute_name) != $role1->get_attribute($attribute_name)) { + my $role2_name = $role2->name; + require Moose; - Moose->throw_error("Role '" . $role1->name . "' has encountered an attribute conflict " . - "during composition. This is fatal error and cannot be disambiguated."); + Moose->throw_error( "Role '" + . $role1->name + . "' has encountered an attribute conflict" + . " while being composed into '$role2_name'." + . " This is a fatal error and cannot be disambiguated." + . " The conflicting attribute is named '$attribute_name'." ); } else { $role2->add_attribute( @@ -75,7 +83,7 @@ sub apply_methods { my $method_name = $method->name; - next if $method_name eq 'meta'; + next if $method->isa('Class::MOP::Method::Meta'); unless ( $self->is_method_excluded($method_name) ) { @@ -178,14 +186,12 @@ sub apply_method_modifiers { 1; +# ABSTRACT: Compose a role into another role + __END__ =pod -=head1 NAME - -Moose::Meta::Role::Application::ToRole - Compose a role into another role - =head1 DESCRIPTION =head2 METHODS @@ -218,18 +224,5 @@ Moose::Meta::Role::Application::ToRole - Compose a role into another role See L for details on reporting bugs. -=head1 AUTHOR - -Stevan Little Estevan@iinteractive.comE - -=head1 COPYRIGHT AND LICENSE - -Copyright 2006-2010 by Infinity Interactive, Inc. - -L - -This library is free software; you can redistribute it and/or modify -it under the same terms as Perl itself. - =cut