increment $VERSION after 1.003028 release
[p5sagit/Devel-REPL.git] / lib / Devel / REPL / Plugin / FindVariable.pm
index 69a746c..737618d 100644 (file)
@@ -1,7 +1,12 @@
+use strict;
+use warnings;
 package Devel::REPL::Plugin::FindVariable;
+# ABSTRACT: Finds variables by name
+
+our $VERSION = '1.003029';
 
 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<< <sartak at gmail dot com> >>
 
 =cut
-