increment $VERSION after 1.003029 release
[p5sagit/Devel-REPL.git] / lib / Devel / REPL / Plugin / Commands.pm
index 04aa22e..1591977 100644 (file)
@@ -1,13 +1,18 @@
+use strict;
+use warnings;
 package Devel::REPL::Plugin::Commands;
+# ABSTRACT: Generic command creation plugin using injected functions
+
+our $VERSION = '1.003030';
 
 use Devel::REPL::Plugin;
 use Scalar::Util qw(weaken);
-
 use namespace::autoclean;
-use vars qw($COMMAND_INSTALLER);
+
+our $COMMAND_INSTALLER;
 
 has 'command_set' => (
-  is => 'ro', required => 1,
+  is => 'ro',
   lazy => 1, default => sub { {} }
 );
 
@@ -63,12 +68,3 @@ around 'compile' => sub {
 };
 
 1;
-
-__END__
-
-=head1 NAME
-
-Devel::REPL::Plugin::Commands - Generic command creation plugin using injected functions
-
-=cut
-