keep $VERSION right in the repo
[p5sagit/Devel-REPL.git] / lib / Devel / REPL / Profile / Minimal.pm
CommitLineData
3bda999e 1package Devel::REPL::Profile::Minimal;
4d33251a 2
54beb05d 3our $VERSION = '1.003027';
4
4d33251a 5use Moose;
aa8b7647 6use namespace::autoclean;
4d33251a 7
8with 'Devel::REPL::Profile';
9
10sub plugins {
91d1e9ff 11 qw(History LexEnv DDS Packages Commands MultiLine::PPI);
4d33251a 12}
13
14sub apply_profile {
15 my ($self, $repl) = @_;
16 $repl->load_plugin($_) for $self->plugins;
17}
18
191;