Apply rt.cpan.org patch 1o4 (#421899)
[p5sagit/Devel-REPL.git] / lib / Devel / REPL / Profile / Default.pm
diff --git a/lib/Devel/REPL/Profile/Default.pm b/lib/Devel/REPL/Profile/Default.pm
deleted file mode 100644 (file)
index b698d9f..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-package Devel::REPL::Profile::Default;
-
-use Moose;
-use namespace::clean -except => [ 'meta' ];
-
-with 'Devel::REPL::Profile';
-
-sub plugins {
-  qw(History LexEnv DDS Packages Commands MultiLine::PPI);
-}
-
-sub apply_profile {
-  my ($self, $repl) = @_;
-  $repl->load_plugin($_) for $self->plugins;
-}
-
-1;