GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Reply(3) User Contributed Perl Documentation Reply(3)

Reply - read, eval, print, loop, yay!

version 0.42

  use Reply;

  Reply->new(config => "$ENV{HOME}/.replyrc")->run;

NOTE: This is an early release, and implementation details of this module are still very much in flux. Feedback is welcome!

Reply is a lightweight, extensible REPL for Perl. It is plugin-based (see Reply::Plugin), and through plugins supports many advanced features such as coloring and pretty printing, readline support, and pluggable commands.

Creates a new Reply instance. Valid options are:
config
Name of a configuration file to load. This should contain INI-style configuration for plugins as described above.
plugins
An arrayref of additional plugins to load.

Runs the repl. Will continue looping until the "read_line" callback returns undef (typically when the user presses "Ctrl+D"), or the "loop" callback returns false (by default, the "#q" command quits the repl in this way).

Runs a single iteration of the repl. If $line is given, it will be used as the string to evaluate (and the "prompt" and "read_line" callbacks will not be called). If $verbose is true, the prompt and line will be displayed as though they were typed. Returns true if the repl can continue, and false if it was requested to quit.

Configuration uses an INI-style format similar to the configuration format of Dist::Zilla. Section names are used as the names of plugins, and any options within a section are passed as arguments to that plugin. Plugins are loaded in order as they are listed in the configuration file, which can affect the results in some cases where multiple plugins are hooking into a single callback (see Reply::Plugin for more information).

In addition to plugin configuration, there are some additional options recognized. These must be specified at the top of the file, before any section headers.

script_file
This contains a filename whose contents will be evaluated as perl code once the configuration is done being loaded.
script_line<n>
Any options that start with "script_line" will be sorted by their key and then each value will be evaluated individually once the configuration is done being loaded.

NOTE: this is currently a hack due to the fact that Config::INI doesn't support multiple keys with the same name in a section. This may be fixed in the future to just allow specifying "script_line" multiple times.

No known bugs.

Please report any bugs to GitHub Issues at <https://github.com/doy/reply/issues>.

Devel::REPL

You can find this documentation for this module with the perldoc command.

    perldoc Reply

You can also look for information at:

  • MetaCPAN

    <https://metacpan.org/release/Reply>

  • Github

    <https://github.com/doy/reply>

  • RT: CPAN's request tracker

    <http://rt.cpan.org/NoAuth/Bugs.html?Dist=Reply>

  • CPAN Ratings

    <http://cpanratings.perl.org/d/Reply>

Jesse Luehrs <doy@tozt.net>

This software is Copyright (c) 2016 by Jesse Luehrs.

This is free software, licensed under:

  The MIT (X11) License
2016-08-24 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.