.replyrc.pl

Sun, 31 Dec 2023 04:32:25 -0500

author
Meredith Howard <mhoward@roomag.org>
date
Sun, 31 Dec 2023 04:32:25 -0500
changeset 1142
dd4f69be5e32
parent 894
796aae0de126
permissions
-rw-r--r--

Add perl ver to sdbm filename due to breakage

use lib glob('~/.lib/perl5');

use Data::Printer 1.0 {
  filters => ['JSON', 'URI'],
  class   => {show_methods => 'public', inherited => 'public'},
};

use Path::Tiny;


# This is extra awkward bc Data::Printer has no introspection of its config.
# These values need to mirror what's set above, or defaults.
my $ddp_show_private   = 0;
my $ddp_show_inherited = 1;

sub ddp_toggle_private {
  my $val = ($ddp_show_private ^= 1) ? 'all' : 'public';
  Data::Printer->import({class => {show_methods => $val}});
  $val;
}

sub ddp_toggle_inherited {
  my $val = ($ddp_show_inherited ^= 1) ? 'public' : 'none';
  Data::Printer->import({class => {inherited => $val}});
  $val;
}

1;

mercurial