increment $VERSION after 1.003027 release
[p5sagit/Devel-REPL.git] / lib / Devel / REPL / Plugin / LexEnv.pm
index e9a297f..d3bd464 100644 (file)
@@ -1,4 +1,9 @@
+use strict;
+use warnings;
 package Devel::REPL::Plugin::LexEnv;
+# ABSTRACT: Provide a lexical environment for the REPL
+
+our $VERSION = '1.003028';
 
 use Devel::REPL::Plugin;
 use namespace::autoclean;
@@ -12,7 +17,6 @@ sub BEFORE_PLUGIN {
 has 'lexical_environment' => (
   isa => 'Lexical::Persistence',
   is => 'rw',
-  required => 1,
   lazy => 1,
   default => sub { Lexical::Persistence->new }
 );
@@ -64,9 +68,7 @@ around 'execute' => sub {
 
 __END__
 
-=head1 NAME
-
-Devel::REPL::Plugin::LexEnv - Provide a lexical environment for the REPL
+=pod
 
 =head1 SYNOPSIS
 
@@ -88,4 +90,3 @@ Devel::REPL::Plugin::LexEnv - Provide a lexical environment for the REPL
  $ warn $s->resultset('User')->first->first_name # <-- note that $s works
 
 =cut
-