don't both "use metaclass" and then "use base 'Class::MOP::Class'"
[gitmo/Class-MOP.git] / lib / metaclass.pm
index 1eca64d..f165b86 100644 (file)
@@ -41,6 +41,7 @@ sub import {
 
     # create a meta object so we can install &meta
     my $meta = $metaclass->initialize($package => %options);
+    my $should_install = !delete $options{no_meta};
     $meta->add_method('meta' => sub {
         # we must re-initialize so that it
         # works as expected in subclasses,
@@ -48,7 +49,7 @@ sub import {
         # singletons, this is not really a
         # big deal anyway.
         $metaclass->initialize((blessed($_[0]) || $_[0]) => %options)
-    });
+    }) if $should_install;
 }
 
 1;