0.55 setup
[gitmo/Moose.git] / lib / Moose / Object.pm
index e6ceebb..86dce7f 100644 (file)
@@ -9,7 +9,7 @@ use if ( not our $__mx_is_compiled ), metaclass => 'Moose::Meta::Class';
 
 use Carp 'confess';
 
-our $VERSION   = '0.52';
+our $VERSION   = '0.54';
 our $AUTHORITY = 'cpan:STEVAN';
 
 sub new {
@@ -22,17 +22,17 @@ sub new {
 
 sub BUILDARGS {
     my $class = shift;
-
     if (scalar @_ == 1) {
         if (defined $_[0]) {
-            no warnings 'uninitialized';
             (ref($_[0]) eq 'HASH')
                 || confess "Single parameters to new() must be a HASH ref";
             return {%{$_[0]}};
-        } else {
+        } 
+        else {
             return {}; # FIXME this is compat behavior, but is it correct?
         }
-    } else {
+    } 
+    else {
         return {@_};
     }
 }
@@ -73,12 +73,14 @@ sub DESTROY {
     $_[0]->DEMOLISHALL;
 }
 
-sub DOES {
-    my ( $self, $class_or_role_name ) = @_;
-
-    $self->isa($class_or_role_name)
-        or
-    $self->does($class_or_role_name);
+# support for UNIVERSAL::DOES ...
+BEGIN {
+    my $does = UNIVERSAL->can("DOES") ? "SUPER::DOES" : "isa";
+    eval 'sub DOES {
+        my ( $self, $class_or_role_name ) = @_;
+        return $self->'.$does.'($class_or_role_name)
+            || $self->does($class_or_role_name);
+    }';
 }
 
 # new does() methods will be created