increment $VERSION after 1.003029 release
[p5sagit/Devel-REPL.git] / lib / Devel / REPL / Profile / Standard.pm
CommitLineData
584978c9 1package Devel::REPL::Profile::Standard;
2
77327851 3our $VERSION = '1.003030';
54beb05d 4
584978c9 5use Moose;
6use namespace::autoclean;
7
8with 'Devel::REPL::Profile';
9
10sub plugins { qw(
11 Colors
12 Completion
13 CompletionDriver::INC
14 CompletionDriver::LexEnv
15 CompletionDriver::Keywords
16 CompletionDriver::Methods
17 History
18 LexEnv
19 DDS
20 Packages
21 Commands
22 MultiLine::PPI
23 ReadLineHistory
24);}
25
26sub apply_profile {
27 my ($self, $repl) = @_;
28 $repl->load_plugin($_) for $self->plugins;
29}
30
311;