X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMouse.git;a=blobdiff_plain;f=lib%2FMouse%2FExporter.pm;h=bd0d7efa994f545c4f6ade1b4b10aaf702da9581;hp=91ccff010fa2dc7f40ae382db679f32394081a22;hb=2b68f76d78d96325821e9a6360c3639f8c5637df;hpb=e6dc493dcf34553b9726d220f7aa42b0fc50eea5 diff --git a/lib/Mouse/Exporter.pm b/lib/Mouse/Exporter.pm index 91ccff0..bd0d7ef 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; } } } @@ -143,10 +143,17 @@ sub do_import { my $into = _get_caller_package(ref($args[0]) ? shift @args : undef); my @exports; + my @traits; - foreach my $arg(@args){ + while(@args){ + my $arg = shift @args; if($arg =~ s/^-//){ - Mouse::Util::not_supported("-$arg"); + if($arg eq 'traits'){ + push @traits, @{shift(@args)}; + } + else { + Mouse::Util::not_supported("-$arg"); + } } elsif($arg =~ s/^://){ my $group = $spec->{groups}{$arg} @@ -161,17 +168,25 @@ sub do_import { $^H |= _strict_bits; # strict->import; ${^WARNING_BITS} = $warnings::Bits{all}; # warnings->import; - if($into eq 'main' && !$spec->{_export_to_main}){ - warn qq{$package does not export its sugar to the 'main' package.\n}; - return; - } - if($spec->{INIT_META}){ + my $meta; foreach my $init_meta(@{$spec->{INIT_META}}){ - $into->$init_meta(for_class => $into); + $meta = $into->$init_meta(for_class => $into); } - # _apply_meta_traits($into); # TODO + if(@traits){ + my $type = (split /::/, ref $meta)[-1]; # e.g. "Class" for "My::Meta::Class" + @traits = + map{ ref($_) ? $_ : Mouse::Util::resolve_metaclass_alias($type => $_, trait => 1) } + @traits; + + not_supported('-traits'); + require Mouse::Util::MetaRole; + Mouse::Util::MetaRole::apply_metaclass_roles( + for_class => $into, + metaclass_roles => \@traits, + ); + } } if(@exports){ @@ -241,6 +256,10 @@ __END__ Mouse::Exporter - make an import() and unimport() just like Mouse.pm +=head1 VERSION + +This document describes Mouse version 0.40_03 + =head1 SYNOPSIS package MyApp::Mouse;