use namespaace::clean in turtles completion driver
[p5sagit/Devel-REPL.git] / lib / Devel / REPL / Plugin / NewlineHack.pm
CommitLineData
a66625d6 1# Original comment:
2#
f254750a 3# Adds a newline after print. Some readlines need it some don't. I guess
4# we should clarify whether this is a bug and if so whose bug at some point
5# but this'll do for now ;)
6
7package Devel::REPL::Plugin::NewlineHack;
8
9use Moose::Role;
48ddfeae 10use namespace::clean -except => [ 'meta' ];
f254750a 11
a66625d6 12warn <<EOW;
13No longer required, extra newline automatically produced for Gnu readline
14implementation by Devel::REPL's print() method.
15
16This plugin will be removed at some point; please remove it from your config.
17EOW
f254750a 18
191;
20
cfd1094b 21__END__
22
23=head1 NAME
24
25Devel::REPL::Plugin::NewlineHack - (deprecated)
26
27=cut
28