X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDevel%2FREPL%2FPlugin%2FLexEnv.pm;h=2bb1319b127751689f590ff16778de950f8d43f9;hb=91fa74995c23339062ee44f9056258280ee3251d;hp=4a272d156108f6a06b1ff51ee4766f91d8333040;hpb=6d22063d380fc145987db58a1b6222a33a596c3e;p=p5sagit%2FDevel-REPL.git diff --git a/lib/Devel/REPL/Plugin/LexEnv.pm b/lib/Devel/REPL/Plugin/LexEnv.pm index 4a272d1..2bb1319 100644 --- a/lib/Devel/REPL/Plugin/LexEnv.pm +++ b/lib/Devel/REPL/Plugin/LexEnv.pm @@ -1,15 +1,19 @@ +use strict; +use warnings; package Devel::REPL::Plugin::LexEnv; -use Moose::Role; -use namespace::clean -except => [ 'meta' ]; +use Devel::REPL::Plugin; +use namespace::autoclean; use Lexical::Persistence; -with 'Devel::REPL::Plugin::FindVariable'; +sub BEFORE_PLUGIN { + my $self = shift; + $self->load_plugin('FindVariable'); +} has 'lexical_environment' => ( isa => 'Lexical::Persistence', is => 'rw', - required => 1, lazy => 1, default => sub { Lexical::Persistence->new } ); @@ -58,3 +62,31 @@ around 'execute' => sub { #}; 1; + +__END__ + +=head1 NAME + +Devel::REPL::Plugin::LexEnv - Provide a lexical environment for the REPL + +=head1 SYNOPSIS + + # in your re.pl file: + use Devel::REPL; + my $repl = Devel::REPL->new; + $repl->load_plugin('LexEnv'); + + $repl->lexical_environment->do(<<'CODEZ'); + use FindBin; + use lib "$FindBin::Bin/../lib"; + use MyApp::Schema; + my $s = MyApp::Schema->connect('dbi:Pg:dbname=foo','broseph','elided'); + CODEZ + + $repl->run; + + # after you run re.pl: + $ warn $s->resultset('User')->first->first_name # <-- note that $s works + +=cut +