X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMouse.pm;h=d698f406ef5474bea3af45742777e9be57c29989;hb=26f0aa174f72fdf5fd803278212b7cefa83c8734;hp=fbbbe0f2804b960439eb41e4212e32531be5ec59;hpb=4bef84ef7f1835abdcab5c23f9a74446349749d8;p=gitmo%2FMouse.git diff --git a/lib/Mouse.pm b/lib/Mouse.pm index fbbbe0f..d698f40 100644 --- a/lib/Mouse.pm +++ b/lib/Mouse.pm @@ -3,7 +3,7 @@ use 5.006_002; use Mouse::Exporter; # enables strict and warnings -our $VERSION = '0.68'; +our $VERSION = '0.77'; use Carp qw(confess); use Scalar::Util qw(blessed); @@ -48,13 +48,8 @@ sub has { $meta->throw_error(q{Usage: has 'name' => ( key => value, ... )}) if @_ % 2; # odd number of arguments - if(ref $name){ # has [qw(foo bar)] => (...) - for (@{$name}){ - $meta->add_attribute($_ => @_); - } - } - else{ # has foo => (...) - $meta->add_attribute($name => @_); + for my $n(ref($name) ? @{$name} : $name){ + $meta->add_attribute($n => @_); } return; } @@ -130,7 +125,7 @@ sub init_meta { my %args = @_; my $class = $args{for_class} - or confess("Cannot call init_meta without specifying a for_class"); + or confess("Cannot call init_meta without specifying a for_class"); my $base_class = $args{base_class} || 'Mouse::Object'; my $metaclass = $args{metaclass} || 'Mouse::Meta::Class'; @@ -160,7 +155,7 @@ Mouse - Moose minus the antlers =head1 VERSION -This document describes Mouse version 0.68 +This document describes Mouse version 0.77 =head1 SYNOPSIS