.lib/perl5/ReplyStartup.pm

Sun, 18 Feb 2018 16:11:32 -0500

author
Meredith Howard <mhoward@roomag.org>
date
Sun, 18 Feb 2018 16:11:32 -0500
changeset 691
5e08af1add1e
parent 690
d005acd0e883
child 692
4573c0ed4d0d
permissions
-rw-r--r--

Let's use Import::Base

package ReplyStartup;
use warnings;
use strict;
use parent 'Import::Base';

our @IMPORT_MODULES = (
  'strict',
  'warnings',
  'feature' => [':5.14'],
  'experimentals',
  'Path::Tiny',
);

sub import {
  my $caller = caller(0);

  # Run anything in .replyrc.local.pl in the context of main, at compile time.
  eval(<<END_PERL)->();
    package $caller; sub {
      -e \$_ && do(\$_) for glob('~/.replyrc.local.pl');
      die \$@ if \$@;
    }
END_PERL

  our @ISA;
  goto($ISA[0]->can('import'));
}

1;

mercurial