Skip to content

Instantly share code, notes, and snippets.

@exodist
Created November 30, 2016 22:47
Show Gist options
  • Save exodist/00532ae04d48146e461addb3ed9c4bbc to your computer and use it in GitHub Desktop.
Save exodist/00532ae04d48146e461addb3ed9c4bbc to your computer and use it in GitHub Desktop.
while (my $file = readdir($PSGI_DIR)) {
next if $file eq 'dev_dev.psgi';
next if $file =~ m/mock/i;
next unless $file =~ m/^(.*)_dev\.psgi$/;
my $name = $1;
local $@;
$APPS{$name} = eval "package $name; do '$PATH/$file'"
or print STDERR "Failed to load $file: $@";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment