summaryrefslogtreecommitdiffstats
path: root/lib/App/REPL/Plugin/DataDumper.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/App/REPL/Plugin/DataDumper.pm')
-rw-r--r--lib/App/REPL/Plugin/DataDumper.pm15
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/App/REPL/Plugin/DataDumper.pm b/lib/App/REPL/Plugin/DataDumper.pm
new file mode 100644
index 0000000..34e520d
--- /dev/null
+++ b/lib/App/REPL/Plugin/DataDumper.pm
@@ -0,0 +1,15 @@
+package App::REPL::Plugin::DataDumper;
+use strict;
+use warnings;
+
+use base 'App::REPL::Plugin';
+
+use Data::Dumper;
+
+sub mangle_result {
+ my $self = shift;
+ my (@result) = @_;
+ return Dumper(@result);
+}
+
+1;