X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMouse%2FMeta%2FRole.pm;h=870b69d9c5f260606ed41ab1892a38737f75fcbc;hb=69ac1dcfa408b64733ba3d2e47e8e791e4548f95;hp=78e01a42e4c8b191b0b28822ac66557a7f4350ca;hpb=7840048031b19bd4af654285aa855826be6fa544;p=gitmo%2FMouse.git diff --git a/lib/Mouse/Meta/Role.pm b/lib/Mouse/Meta/Role.pm index 78e01a4..870b69d 100644 --- a/lib/Mouse/Meta/Role.pm +++ b/lib/Mouse/Meta/Role.pm @@ -37,12 +37,13 @@ sub name { $_[0]->{name} } sub add_attribute { my $self = shift; my $name = shift; - $self->{attributes}->{$name} = [ @_ ]; + my $spec = shift; + $self->{attributes}->{$name} = $spec; } sub has_attribute { exists $_[0]->{attributes}->{$_[1]} } sub get_attribute_list { keys %{ $_[0]->{attributes} } } -sub get_attribute { @{ $_->[0]->{attributes}->{$_[1]} || [] } } +sub get_attribute { $_[0]->{attributes}->{$_[1]} } sub apply { my $self = shift; @@ -50,8 +51,8 @@ sub apply { my $pkg = $class->name; for my $name ($self->get_attribute_list) { - my @spec = $self->get_attribute($name); - Mouse::Meta::Attribute->create($pkg, $name, @spec); + my $spec = $self->get_attribute($name); + Mouse::Meta::Attribute->create($pkg, $name, %$spec); } }