X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FDevel-REPL.git;a=blobdiff_plain;f=lib%2FDevel%2FREPL%2FPlugin%2FFindVariable.pm;h=c55c8e3eef18158f8680c72f66208cca92fd8807;hp=69a746c86a690069a965e01861c4c5597df1801d;hb=9d2a4940f5958d82828272364ef754e9290b6113;hpb=86f22c23273d4dfa82e5ec216962aeaea896dc65 diff --git a/lib/Devel/REPL/Plugin/FindVariable.pm b/lib/Devel/REPL/Plugin/FindVariable.pm index 69a746c..c55c8e3 100644 --- a/lib/Devel/REPL/Plugin/FindVariable.pm +++ b/lib/Devel/REPL/Plugin/FindVariable.pm @@ -1,7 +1,12 @@ +use strict; +use warnings; package Devel::REPL::Plugin::FindVariable; +# ABSTRACT: Finds variables by name + +our $VERSION = '1.003027'; use Devel::REPL::Plugin; -use namespace::clean -except => [ 'meta' ]; +use namespace::autoclean; sub find_variable { my ($self, $name) = @_; @@ -32,13 +37,10 @@ sub find_variable { __END__ -=head1 NAME - -Devel::REPL::Plugin::FindVariable - Finds variables by name +=pod =head1 AUTHOR Shawn M Moore, C<< >> =cut -