add Devel::GlobalDestruction to fatnode
[scpubgit/Object-Remote.git] / lib / Object / Remote / FatNode.pm
index fe07f29..cafc47e 100644 (file)
@@ -39,6 +39,7 @@ my $command = qq(
   -mMethod::Generate::DemolishAll
   -mMoo::HandleMoose::_TypeMap
   -mJSON::PP
+  -mDevel::GlobalDestruction
   -e 'print join "\\n", \%INC'
 );
 
@@ -47,9 +48,16 @@ $command =~ s/\n/ /g;
 chomp(my @inc = qx($command));
 
 my %exclude = map { $_ => 1 } @exclude_mods;
-my %mods = reverse @inc;
+
 my %file_names = @inc;
 
+# only include mods that match the filename,
+# ie ones that will succeed with a require $module
+# https://rt.cpan.org/Ticket/Display.html?id=100478
+my %mods =
+  map { $file_names{$_} => $_ }
+  grep { $file_names{$_} =~ /\Q$_\E$/ } keys %file_names;
+
 foreach(keys(%mods)) {
   if ($exclude{ $mods{$_} }) {
     delete($mods{$_});