X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMouse.git;a=blobdiff_plain;f=lib%2FMouse%2FExporter.pm;h=a2af4aac3f961889be9ba94cbc3adccd18350885;hp=91ccff010fa2dc7f40ae382db679f32394081a22;hb=a25ca8d637c040b2f929b1a23dd62ff63d85f5d1;hpb=e6dc493dcf34553b9726d220f7aa42b0fc50eea5 diff --git a/lib/Mouse/Exporter.pm b/lib/Mouse/Exporter.pm index 91ccff0..a2af4aa 100644 --- a/lib/Mouse/Exporter.pm +++ b/lib/Mouse/Exporter.pm @@ -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.37_06 + =head1 SYNOPSIS package MyApp::Mouse;