X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FDevel-REPL.git;a=blobdiff_plain;f=lib%2FDevel%2FREPL%2FPlugin%2FRefresh.pm;h=750cbd207916d3e55b80e6b8a59272cfa008c1d1;hp=a94d5b6bfe15126f867e3961170996e29c3fb2c0;hb=HEAD;hpb=6a5409bc859187db7d7553e4c19a559aeeba6430 diff --git a/lib/Devel/REPL/Plugin/Refresh.pm b/lib/Devel/REPL/Plugin/Refresh.pm index a94d5b6..750cbd2 100644 --- a/lib/Devel/REPL/Plugin/Refresh.pm +++ b/lib/Devel/REPL/Plugin/Refresh.pm @@ -1,7 +1,12 @@ +use strict; +use warnings; package Devel::REPL::Plugin::Refresh; +# ABSTRACT: Reload libraries with Module::Refresh + +our $VERSION = '1.003030'; use Devel::REPL::Plugin; -use namespace::clean -except => [ 'meta' ]; +use namespace::autoclean; use Module::Refresh; # before evaluating the code, ask Module::Refresh to refresh @@ -18,12 +23,3 @@ around 'eval' => sub { }; 1; - -__END__ - -=head1 NAME - -Devel::REPL::Plugin::Refresh - reload libraries with Module::Refresh - -=cut -