move Default profile to Standard; default profile is now Minimal
[p5sagit/Devel-REPL.git] / lib / Devel / REPL / Profile / Default.pm
index dc00876..05f4547 100644 (file)
@@ -3,27 +3,8 @@ package Devel::REPL::Profile::Default;
 use Moose;
 use namespace::autoclean;
 
-with 'Devel::REPL::Profile';
+# for backcompat only - Default was renamed to Standard
 
-sub plugins { qw(
-  Colors
-  Completion
-  CompletionDriver::INC
-  CompletionDriver::LexEnv
-  CompletionDriver::Keywords
-  CompletionDriver::Methods
-  History
-  LexEnv
-  DDS
-  Packages
-  Commands
-  MultiLine::PPI
-  ReadLineHistory
-);}
-
-sub apply_profile {
-  my ($self, $repl) = @_;
-  $repl->load_plugin($_) for $self->plugins;
-}
+extends 'Devel::REPL::Profile::Standard';
 
 1;