Revision history for Devel-REPL
+{{ $NEXT }}
+
1.003027 2015-08-16 05:18:24Z
- updated some bits of the distribution packaging
package Devel::REPL;
# ABSTRACT: A modern perl interactive shell
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
use Term::ReadLine;
use Moose;
package Devel::REPL::Error;
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
use Moose;
use namespace::autoclean;
use warnings;
package Devel::REPL::Meta::Plugin;
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
use Moose;
use namespace::autoclean;
use warnings;
package Devel::REPL::Plugin;
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
use Devel::REPL::Meta::Plugin;
use Moose::Role ();
package Devel::REPL::Plugin::B::Concise;
# ABSTRACT: B::Concise dumping of expression optrees
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
use Devel::REPL::Plugin;
use B::Concise 0.62 ();
package Devel::REPL::Plugin::Colors;
# ABSTRACT: Add color to return values, warnings, and errors
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
use Devel::REPL::Plugin;
use Term::ANSIColor;
package Devel::REPL::Plugin::Commands;
# ABSTRACT: Generic command creation plugin using injected functions
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
use Devel::REPL::Plugin;
use Scalar::Util qw(weaken);
package Devel::REPL::Plugin::Completion;
# ABSTRACT: Extensible tab completion
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
use Devel::REPL::Plugin;
use Scalar::Util 'weaken';
package Devel::REPL::Plugin::CompletionDriver::Globals;
# ABSTRACT: Complete global variables, packages, namespaced functions
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
use Devel::REPL::Plugin;
use Devel::REPL::Plugin::Completion; # die early if cannot load
package Devel::REPL::Plugin::CompletionDriver::INC;
# ABSTRACT: Complete module names in use and require
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
use Devel::REPL::Plugin;
use Devel::REPL::Plugin::Completion; # die early if cannot load
package Devel::REPL::Plugin::CompletionDriver::Keywords;
# ABSTRACT: Complete Perl keywords and operators
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
use Devel::REPL::Plugin;
use Devel::REPL::Plugin::Completion; # die early if cannot load
package Devel::REPL::Plugin::CompletionDriver::LexEnv;
# ABSTRACT: Complete variable names in the REPL's lexical environment
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
use Devel::REPL::Plugin;
use Devel::REPL::Plugin::Completion; # die early if cannot load
package Devel::REPL::Plugin::CompletionDriver::Methods;
# ABSTRACT: Complete class or object method names
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
use Devel::REPL::Plugin;
use Devel::REPL::Plugin::Completion; # die early if cannot load
package Devel::REPL::Plugin::CompletionDriver::Turtles;
# ABSTRACT: Complete Turtles-based commands
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
use Devel::REPL::Plugin;
use Devel::REPL::Plugin::Completion; # die early if cannot load
package Devel::REPL::Plugin::DDC;
# ABSTRACT: Format results with Data::Dumper::Concise
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
use Devel::REPL::Plugin;
use Data::Dumper::Concise ();
package Devel::REPL::Plugin::DDS;
# ABSTRACT: Format results with Data::Dump::Streamer
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
use Devel::REPL::Plugin;
use Data::Dump::Streamer ();
package Devel::REPL::Plugin::DumpHistory;
# ABSTRACT: Plugin for Devel::REPL to save or print the history
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
use Devel::REPL::Plugin;
use namespace::autoclean;
package Devel::REPL::Plugin::FancyPrompt;
# ABSTRACT: Facilitate user-defined prompts
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
use Devel::REPL::Plugin;
use namespace::autoclean;
package Devel::REPL::Plugin::FindVariable;
# ABSTRACT: Finds variables by name
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
use Devel::REPL::Plugin;
use namespace::autoclean;
package Devel::REPL::Plugin::History;
# ABSTRACT: Keep track of all input, provide shortcuts !1, !-1
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
use Devel::REPL::Plugin;
use namespace::autoclean;
package Devel::REPL::Plugin::Interrupt;
# ABSTRACT: Traps SIGINT to kill long-running lines
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
use Devel::REPL::Plugin;
use Sys::SigAction qw(set_sig_handler);
package Devel::REPL::Plugin::LexEnv;
# ABSTRACT: Provide a lexical environment for the REPL
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
use Devel::REPL::Plugin;
use namespace::autoclean;
package Devel::REPL::Plugin::MultiLine::PPI;
# ABSTRACT: Read lines until all blocks are closed
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
use Devel::REPL::Plugin;
use PPI;
package Devel::REPL::Plugin::Nopaste;
# ABSTRACT: #nopaste to upload session's input and output
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
use Devel::REPL::Plugin;
use Moose::Util::TypeConstraints 'enum';
package Devel::REPL::Plugin::OutputCache;
# ABSTRACT: Remember past results, _ is most recent
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
use Devel::REPL::Plugin;
use namespace::autoclean;
package Devel::REPL::Plugin::PPI;
# ABSTRACT: PPI dumping of Perl code
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
use Devel::REPL::Plugin;
use PPI;
package Devel::REPL::Plugin::Packages;
# ABSTRACT: Keep track of which package the user is in
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
use Devel::REPL::Plugin;
use namespace::autoclean;
package Devel::REPL::Plugin::Peek;
# ABSTRACT: L<Devel::Peek> plugin for L<Devel::REPL>.
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
use Devel::REPL::Plugin;
use Devel::Peek qw(Dump);
package Devel::REPL::Plugin::ReadLineHistory;
# ABSTRACT: Integrate history with the facilities provided by L<Term::ReadLine>
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
use Devel::REPL::Plugin;
use File::HomeDir;
package Devel::REPL::Plugin::Refresh;
# ABSTRACT: Reload libraries with Module::Refresh
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
use Devel::REPL::Plugin;
use namespace::autoclean;
package Devel::REPL::Plugin::ShowClass;
# ABSTRACT: Dump classes initialized with Class::MOP
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
use Devel::REPL::Plugin;
use namespace::autoclean;
package Devel::REPL::Plugin::Timing;
# ABSTRACT: Display execution times
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
use Devel::REPL::Plugin;
use Time::HiRes 'time';
package Devel::REPL::Plugin::Turtles;
# ABSTRACT: Generic command creation using a read hook
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
use Devel::REPL::Plugin;
use Scalar::Util qw(reftype);
package Devel::REPL::Profile;
# ABSTRACT: Code to execute when re.pl starts
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
use Moose::Role;
requires 'apply_profile';
package Devel::REPL::Profile::Default;
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
use Moose;
use namespace::autoclean;
package Devel::REPL::Profile::Minimal;
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
use Moose;
use namespace::autoclean;
package Devel::REPL::Profile::Standard;
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
use Moose;
use namespace::autoclean;
package Devel::REPL::Script;
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
use Moose;
use Devel::REPL;