increment $VERSION after 1.003027 release
[p5sagit/Devel-REPL.git] / lib / Devel / REPL / Plugin / Timing.pm
index 13f47d0..1d15717 100644 (file)
@@ -1,8 +1,13 @@
+use strict;
+use warnings;
 package Devel::REPL::Plugin::Timing;
+# ABSTRACT: Display execution times
 
-use Moose::Role;
+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;
@@ -24,3 +29,26 @@ around 'eval' => sub {
 
 1;
 
+__END__
+
+=pod
+
+=head1 SYNOPSIS
+
+ # in your re.pl file:
+ use Devel::REPL;
+ my $repl = Devel::REPL->new;
+ $repl->load_plugin('Timing');
+
+ # after you run re.pl:
+ $ sum map $_*100, 1..100000;
+ Took 0.0830280780792236 seconds.
+ 500005000000
+
+ $
+
+=head1 AUTHOR
+
+Shawn M Moore, C<< <sartak at gmail dot com> >>
+
+=cut