X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FDevel-REPL.git;a=blobdiff_plain;f=lib%2FDevel%2FREPL%2FProfile%2FDefault.pm;h=05f4547a4b2bb77aeb52e02dff8076b91706c0ca;hp=672f367d85c34d56835aeaace757a813504faf3a;hb=584978c990ea260400f416af78fe316f5fa7f0d2;hpb=ca725830bbee7844ec7082ca243d2efa033141ba diff --git a/lib/Devel/REPL/Profile/Default.pm b/lib/Devel/REPL/Profile/Default.pm index 672f367..05f4547 100644 --- a/lib/Devel/REPL/Profile/Default.pm +++ b/lib/Devel/REPL/Profile/Default.pm @@ -1,17 +1,10 @@ package Devel::REPL::Profile::Default; use Moose; -use namespace::clean -except => [ 'meta' ]; +use namespace::autoclean; -with 'Devel::REPL::Profile'; +# for backcompat only - Default was renamed to Standard -sub plugins { - qw(History LexEnv DDS Packages Commands); -} - -sub apply_profile { - my ($self, $repl) = @_; - $repl->load_plugin($_) for $self->plugins; -} +extends 'Devel::REPL::Profile::Standard'; 1;