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=55d2e056d93d16cd9726dfc15cf91326a8291768;hp=dc00876285813c4b5c44e2185fecbdae37dce690;hb=796cd7ec80de14e45ca8221d545aceb7b9bc0b71;hpb=aa8b764738156914d48d182ee0706e4c3d4e5c99 diff --git a/lib/Devel/REPL/Profile/Default.pm b/lib/Devel/REPL/Profile/Default.pm index dc00876..55d2e05 100644 --- a/lib/Devel/REPL/Profile/Default.pm +++ b/lib/Devel/REPL/Profile/Default.pm @@ -1,29 +1,12 @@ package Devel::REPL::Profile::Default; +our $VERSION = '1.003027'; + use Moose; use namespace::autoclean; -with 'Devel::REPL::Profile'; - -sub plugins { qw( - Colors - Completion - CompletionDriver::INC - CompletionDriver::LexEnv - CompletionDriver::Keywords - CompletionDriver::Methods - History - LexEnv - DDS - Packages - Commands - MultiLine::PPI - ReadLineHistory -);} +# 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;