eval code directly instead of generating a sub
[p5sagit/Import-Into.git] / lib / Import / Into.pm
index 0886ad8..3314ec3 100644 (file)
@@ -3,18 +3,26 @@ package Import::Into;
 use strict;
 use warnings FATAL => 'all';
 
-our $VERSION = '1.000002'; # 1.0.2
-
-my %importers;
+our $VERSION = '1.001001'; # 1.1.1
+
+sub _prelude {
+  my $target = shift;
+  my ($package, $file, $line)
+    = $target =~ /[^0-9]/ ? ($target) : caller($target + 1);
+  qq{package $package;\n}
+    . ($file ? "#line $line \"$file\"\n" : '')
+}
 
 sub import::into {
   my ($class, $target, @args) = @_;
-  $class->${\(
-    $importers{$target} ||= eval qq{
-      package $target;
-      sub { shift->import(\@_) };
-    } or die "Couldn't build importer for $target: $@"
-  )}(@args);
+  eval _prelude($target) . '$class->import(@args); 1'
+    or die $@;
+}
+
+sub unimport::out_of {
+  my ($class, $target, @args) = @_;
+  eval _prelude($target) . '$class->unimport(@args); 1'
+    or die $@;
 }
 
 1;
@@ -61,6 +69,14 @@ C<import::into> on it. This is a global method, and is callable on any
 package (and in fact on any object as well, although it's rarer that you'd
 want to do that).
 
+Finally, we also provide an C<unimport::out_of> to allow the exporting of the
+effect of C<no>:
+
+  # unimport::out_of was added in 1.1.0 (1.001000)
+  sub unimport {
+    Moose->unimport::out_of(scalar caller); # no MyThing == no Moose
+  }
+
 If how and why this all works is of interest to you, please read on to the
 description immediately below.
 
@@ -164,13 +180,19 @@ you're receiving this from a parameter, I recommend using L<Module::Runtime>:
 
 And that's it.
 
+=head1 ACKNOWLEDGEMENTS
+
+Thanks to Getty for asking "how can I get C<< use strict; use warnings; >>
+turned on for all consumers of my code?" and then "why is this not a
+module?!".
+
 =head1 AUTHOR
 
 mst - Matt S. Trout (cpan:MSTROUT) <mst@shadowcat.co.uk>
 
 =head1 CONTRIBUTORS
 
-None yet - maybe this software is perfect! (ahahahahahahahahaha)
+haarg - Graham Knop (cpan:HAARG) <haarg@haarg.org>
 
 =head1 COPYRIGHT