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=a8d93d4ea5b207616bd443d0175f0b108d8574af;hp=4e01649ce052f3820d8c4c8032386154c5af7818;hb=796cd7ec80de14e45ca8221d545aceb7b9bc0b71;hpb=6a5409bc859187db7d7553e4c19a559aeeba6430 diff --git a/lib/Devel/REPL/Plugin/LexEnv.pm b/lib/Devel/REPL/Plugin/LexEnv.pm index 4e01649..a8d93d4 100644 --- a/lib/Devel/REPL/Plugin/LexEnv.pm +++ b/lib/Devel/REPL/Plugin/LexEnv.pm @@ -1,15 +1,22 @@ +use strict; +use warnings; package Devel::REPL::Plugin::LexEnv; +# ABSTRACT: Provide a lexical environment for the REPL + +our $VERSION = '1.003027'; use Devel::REPL::Plugin; -use namespace::clean -except => [ 'meta' ]; +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 } ); @@ -61,9 +68,25 @@ around 'execute' => sub { __END__ -=head1 NAME +=pod -Devel::REPL::Plugin::LexEnv - Provide a lexical environment for the REPL +=head1 SYNOPSIS -=cut + # 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