summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bin/repl1
-rw-r--r--dist.ini1
-rw-r--r--lib/App/REPL.pm1
3 files changed, 3 insertions, 0 deletions
diff --git a/bin/repl b/bin/repl
index 24cc351..3528618 100644
--- a/bin/repl
+++ b/bin/repl
@@ -1,6 +1,7 @@
#!/usr/bin/env perl
use strict;
use warnings;
+# PODNAME: repl
use App::REPL;
diff --git a/dist.ini b/dist.ini
index 30a9394..f22c142 100644
--- a/dist.ini
+++ b/dist.ini
@@ -9,3 +9,4 @@ dist = App-REPL
repository = github
[AutoPrereqs]
+skip = ^Data::Dump$
diff --git a/lib/App/REPL.pm b/lib/App/REPL.pm
index bc7b8a6..fde2d0c 100644
--- a/lib/App/REPL.pm
+++ b/lib/App/REPL.pm
@@ -1,6 +1,7 @@
package App::REPL;
use strict;
use warnings;
+# ABSTRACT: simple, pluggable repl
use Module::Runtime qw(compose_module_name use_package_optimistically);
use Scalar::Util qw(blessed);