increment $VERSION after 1.003027 release
[p5sagit/Devel-REPL.git] / lib / Devel / REPL / Plugin / Timing.pm
index 503d625..1d15717 100644 (file)
@@ -1,8 +1,13 @@
+use strict;
+use warnings;
 package Devel::REPL::Plugin::Timing;
+# ABSTRACT: Display execution times
+
+our $VERSION = '1.003028';
 
 use Devel::REPL::Plugin;
 use Time::HiRes 'time';
-use namespace::clean -except => [ 'meta' ];
+use namespace::autoclean;
 
 around 'eval' => sub {
     my $orig = shift;
@@ -26,9 +31,7 @@ around 'eval' => sub {
 
 __END__
 
-=head1 NAME
-
-Devel::REPL::Plugin::Timing - display execution times
+=pod
 
 =head1 SYNOPSIS
 
@@ -49,4 +52,3 @@ Devel::REPL::Plugin::Timing - display execution times
 Shawn M Moore, C<< <sartak at gmail dot com> >>
 
 =cut
-