X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FDevel-REPL.git;a=blobdiff_plain;f=lib%2FDevel%2FREPL%2FPlugin%2FNopaste.pm;h=c3183c6a24339c6d9c214c06284e52d52e0c0be5;hp=db6ff7cfa0ffc51667f55147ee4a89580b6aa21c;hb=e73ba6daf10d1d86070fd978092f9731310b410d;hpb=aa8b764738156914d48d182ee0706e4c3d4e5c99 diff --git a/lib/Devel/REPL/Plugin/Nopaste.pm b/lib/Devel/REPL/Plugin/Nopaste.pm index db6ff7c..c3183c6 100644 --- a/lib/Devel/REPL/Plugin/Nopaste.pm +++ b/lib/Devel/REPL/Plugin/Nopaste.pm @@ -1,7 +1,9 @@ +use strict; +use warnings; package Devel::REPL::Plugin::Nopaste; use Devel::REPL::Plugin; -use Moose::Util::TypeConstraints; +use Moose::Util::TypeConstraints 'enum'; use namespace::autoclean; use Scalar::Util qw(blessed); @@ -11,7 +13,7 @@ sub BEFORE_PLUGIN { } has complete_session => ( - metaclass => 'String', + traits => ['String'], is => 'rw', isa => 'Str', lazy => 1, @@ -114,7 +116,7 @@ the nopaste site. For example: C<#pastetitle example of some code> -defaults to 'Devel::REPL session' +defaults to C<'Devel::REPL session'>. =head1 CONFIGURATION @@ -132,7 +134,7 @@ The default of commenting out the output would be set like this: C<< $_REPL->nopaste_format( 'comment_output' ); >> -These options can be set during a Devel::REPL session, but only affect +These options can be set during a L session, but only affect the future parts of the session, not the past parts. =head1 AUTHOR