increment $VERSION after 1.003029 release
[p5sagit/Devel-REPL.git] / lib / Devel / REPL / Plugin / FancyPrompt.pm
index 557b274..fea7f2a 100644 (file)
@@ -1,7 +1,12 @@
+use strict;
+use warnings;
 package Devel::REPL::Plugin::FancyPrompt;
+# ABSTRACT: Facilitate user-defined prompts
 
-use Moose::Role;
-use namespace::clean -except => [ 'meta' ];
+our $VERSION = '1.003030';
+
+use Devel::REPL::Plugin;
+use namespace::autoclean;
 
 has 'fancy_prompt' => (
   is => 'rw', lazy => 1,
@@ -57,15 +62,10 @@ before 'read' => sub {
 
 __END__
 
-=head1 NAME
-
-Devel::REPL::Plugin::FancyPrompt - facilitate user-defined prompts
+=pod
 
 =head1 SYNOPSIS
 
-    #!/usr/bin/perl 
-
-    use lib './lib';
     use Devel::REPL;
 
     my $repl = Devel::REPL->new;
@@ -118,4 +118,3 @@ This library is free software; you can redistribute it and/or modify
 it under the same terms as Perl itself.
 
 =cut
-