increment $VERSION after 1.003029 release
[p5sagit/Devel-REPL.git] / lib / Devel / REPL / Profile / Minimal.pm
1 package Devel::REPL::Profile::Minimal;
2
3 our $VERSION = '1.003030';
4
5 use Moose;
6 use namespace::autoclean;
7
8 with 'Devel::REPL::Profile';
9
10 sub plugins {
11   qw(History LexEnv DDS Packages Commands MultiLine::PPI);
12 }
13
14 sub apply_profile {
15   my ($self, $repl) = @_;
16   $repl->load_plugin($_) for $self->plugins;
17 }
18
19 1;