X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FDevel-REPL.git;a=blobdiff_plain;f=lib%2FDevel%2FREPL%2FPlugin%2FLexEnv.pm;h=8c99f175907f1446d9c6ddace243beadd6fc5184;hp=626bafdbf471886f674bdd4bd312ebc4ec841f24;hb=e4761e81ea1521f1daf146e8e5ec066b40d35888;hpb=cfd1094b45c394258ccda08216f1435bf40e1d50 diff --git a/lib/Devel/REPL/Plugin/LexEnv.pm b/lib/Devel/REPL/Plugin/LexEnv.pm index 626bafd..8c99f17 100644 --- a/lib/Devel/REPL/Plugin/LexEnv.pm +++ b/lib/Devel/REPL/Plugin/LexEnv.pm @@ -1,10 +1,13 @@ package Devel::REPL::Plugin::LexEnv; -use Moose::Role; +use Devel::REPL::Plugin; use namespace::clean -except => [ 'meta' ]; use Lexical::Persistence; -with 'Devel::REPL::Plugin::FindVariable'; +sub BEFORE_PLUGIN { + my $self = shift; + $self->load_plugin('FindVariable'); +} has 'lexical_environment' => ( isa => 'Lexical::Persistence', @@ -65,5 +68,24 @@ __END__ 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