Move to Moo for fast bootstrapping.
[p5sagit/Devel-REPL.git] / lib / Devel / REPL / Profile / Minimal.pm
CommitLineData
3bda999e 1package Devel::REPL::Profile::Minimal;
4d33251a 2
e2d0b019 3use Moo;
4use namespace::sweep;
4d33251a 5
6with 'Devel::REPL::Profile';
7
8sub plugins {
91d1e9ff 9 qw(History LexEnv DDS Packages Commands MultiLine::PPI);
4d33251a 10}
11
12sub apply_profile {
13 my ($self, $repl) = @_;
14 $repl->load_plugin($_) for $self->plugins;
15}
16
171;