Fix an issue in Mouse::Object::new to throw informative messages
[gitmo/Mouse.git] / lib / Mouse / Exporter.pm
index 91ccff0..910456c 100644 (file)
@@ -102,7 +102,7 @@ sub build_import_methods{
 
             if(my $init_meta = $package->can('init_meta')){
                 if(!grep{ $_ == $init_meta } @init_meta_methods){
-                    unshift @init_meta_methods, $init_meta;
+                    push @init_meta_methods, $init_meta;
                 }
             }
         }
@@ -241,6 +241,10 @@ __END__
 
 Mouse::Exporter - make an import() and unimport() just like Mouse.pm
 
+=head1 VERSION
+
+This document describes Mouse version 0.39
+
 =head1 SYNOPSIS
 
     package MyApp::Mouse;\r