increment $VERSION after 1.003027 release
[p5sagit/Devel-REPL.git] / lib / Devel / REPL / Profile / Default.pm
index 672f367..2baf93e 100644 (file)
@@ -1,17 +1,12 @@
 package Devel::REPL::Profile::Default;
 
-use Moose;
-use namespace::clean -except => [ 'meta' ];
+our $VERSION = '1.003028';
 
-with 'Devel::REPL::Profile';
+use Moose;
+use namespace::autoclean;
 
-sub plugins {
-  qw(History LexEnv DDS Packages Commands);
-}
+# for backcompat only - Default was renamed to Standard
 
-sub apply_profile {
-  my ($self, $repl) = @_;
-  $repl->load_plugin($_) for $self->plugins;
-}
+extends 'Devel::REPL::Profile::Standard';
 
 1;