2010-12-08 02:30:38 -05:00
|
|
|
Pry
|
|
|
|
=============
|
|
|
|
|
|
|
|
(C) John Mair (banisterfiend) 2010
|
|
|
|
|
2010-12-08 08:49:28 -05:00
|
|
|
_attach an irb-like session to any object at runtime_
|
2010-12-08 02:30:38 -05:00
|
|
|
|
2010-12-08 09:06:52 -05:00
|
|
|
Pry is a simple Ruby REPL (Read-Eval-Print-Loop) that specializes in the interactive
|
2011-01-20 21:46:56 -05:00
|
|
|
manipulation of objects during the running of a program.
|
2010-12-08 02:30:38 -05:00
|
|
|
|
2010-12-16 23:56:50 -05:00
|
|
|
It is not based on the IRB codebase, and implements some unique REPL
|
2011-01-20 21:46:56 -05:00
|
|
|
commands such as `show_method` and `show_doc`
|
2010-12-08 11:18:01 -05:00
|
|
|
|
2010-12-08 06:39:06 -05:00
|
|
|
* Install the [gem](https://rubygems.org/gems/pry): `gem install pry`
|
|
|
|
* Read the [documentation](http://rdoc.info/github/banister/pry/master/file/README.markdown)
|
|
|
|
* See the [source code](http://github.com/banister/pry)
|
2010-12-08 02:30:38 -05:00
|
|
|
|
2011-01-13 09:35:46 -05:00
|
|
|
Example: Interacting with an object at runtime
|
2010-12-08 06:39:06 -05:00
|
|
|
---------------------------------------
|
2010-12-08 02:30:38 -05:00
|
|
|
|
2011-01-09 06:51:45 -05:00
|
|
|
With the `Object#pry` method we can pry (open an irb-like session) on
|
2010-12-08 06:39:06 -05:00
|
|
|
an object. In the example below we open a Pry session for the `Test` class and execute a method and add
|
2010-12-08 08:49:28 -05:00
|
|
|
an instance variable. The current thread is halted for the duration of the session.
|
2010-12-08 02:30:38 -05:00
|
|
|
|
2010-12-08 06:39:06 -05:00
|
|
|
require 'pry'
|
2011-01-13 09:35:46 -05:00
|
|
|
|
2010-12-08 06:39:06 -05:00
|
|
|
class Test
|
|
|
|
def self.hello() "hello world" end
|
2010-12-08 02:30:38 -05:00
|
|
|
end
|
|
|
|
|
2011-01-09 06:51:45 -05:00
|
|
|
Test.pry
|
2010-12-08 06:39:06 -05:00
|
|
|
|
|
|
|
# Pry session begins on stdin
|
|
|
|
Beginning Pry session for Test
|
|
|
|
pry(Test)> self
|
|
|
|
=> Test
|
|
|
|
pry(Test)> hello
|
|
|
|
=> "hello world"
|
|
|
|
pry(Test)> @y = 20
|
|
|
|
=> 20
|
|
|
|
pry(Test)> exit
|
|
|
|
Ending Pry session for Test
|
|
|
|
|
|
|
|
# program resumes here
|
|
|
|
|
|
|
|
If we now inspect the `Test` object we can see our changes have had
|
|
|
|
effect:
|
|
|
|
|
|
|
|
Test.instance_variable_get(:@y) #=> 20
|
|
|
|
|
2011-01-19 03:40:43 -05:00
|
|
|
### Alternative Syntax
|
2010-12-11 00:22:17 -05:00
|
|
|
|
2011-01-09 06:51:45 -05:00
|
|
|
You can also use the `Pry.start(obj)` or `pry(obj)` syntax to start a pry session on
|
2010-12-08 19:59:30 -05:00
|
|
|
`obj`. e.g
|
|
|
|
|
2011-01-13 09:35:46 -05:00
|
|
|
Pry.start(5)
|
2010-12-08 19:59:30 -05:00
|
|
|
Beginning Pry session for 5
|
|
|
|
pry(5)>
|
2010-12-11 04:01:47 -05:00
|
|
|
|
|
|
|
OR
|
|
|
|
|
2011-01-13 09:35:46 -05:00
|
|
|
pry(6)
|
2010-12-11 04:01:47 -05:00
|
|
|
beginning Pry session for 6
|
|
|
|
pry(6)>
|
2011-01-09 06:51:45 -05:00
|
|
|
|
2011-01-20 21:46:56 -05:00
|
|
|
Example: Pry sessions can nest
|
2011-01-19 03:40:43 -05:00
|
|
|
-----------------------------------------------
|
2010-12-08 06:39:06 -05:00
|
|
|
|
|
|
|
Here we will begin Pry at top-level, then pry on a class and then on
|
|
|
|
an instance variable inside that class:
|
|
|
|
|
2010-12-08 19:59:30 -05:00
|
|
|
# Pry.start() without parameters begins a Pry session on top-level (main)
|
|
|
|
Pry.start
|
2010-12-08 06:39:06 -05:00
|
|
|
Beginning Pry session for main
|
|
|
|
pry(main)> class Hello
|
|
|
|
pry(main)* @x = 20
|
|
|
|
pry(main)* end
|
|
|
|
=> 20
|
2011-01-09 06:51:45 -05:00
|
|
|
pry(main)> Hello.pry
|
2010-12-08 06:39:06 -05:00
|
|
|
Beginning Pry session for Hello
|
2010-12-08 19:59:30 -05:00
|
|
|
pry(Hello):1> instance_variables
|
2010-12-08 06:39:06 -05:00
|
|
|
=> [:@x]
|
2011-01-09 06:51:45 -05:00
|
|
|
pry(Hello):1> @x.pry
|
2010-12-08 06:39:06 -05:00
|
|
|
Beginning Pry session for 20
|
2010-12-08 19:59:30 -05:00
|
|
|
pry(20:2)> self + 10
|
2010-12-08 06:39:06 -05:00
|
|
|
=> 30
|
2010-12-08 19:59:30 -05:00
|
|
|
pry(20:2)> exit
|
2010-12-08 06:39:06 -05:00
|
|
|
Ending Pry session for 20
|
2010-12-08 19:59:30 -05:00
|
|
|
pry(Hello):1> exit
|
2010-12-08 06:39:06 -05:00
|
|
|
Ending Pry session for Hello
|
|
|
|
pry(main)> exit
|
|
|
|
Ending Pry session for main
|
2010-12-08 19:59:30 -05:00
|
|
|
|
|
|
|
The number after the `:` in the pry prompt indicates the nesting
|
|
|
|
level. To display more information about nesting, use the `nesting`
|
|
|
|
command. E.g
|
|
|
|
|
|
|
|
pry("friend":3)> nesting
|
|
|
|
Nesting status:
|
|
|
|
0. main (Pry top level)
|
|
|
|
1. Hello
|
|
|
|
2. 100
|
|
|
|
3. "friend"
|
|
|
|
=> nil
|
2011-01-13 09:35:46 -05:00
|
|
|
|
2010-12-08 19:59:30 -05:00
|
|
|
We can then jump back to any of the previous nesting levels by using
|
2010-12-11 04:01:47 -05:00
|
|
|
the `jump_to` command:
|
2010-12-08 19:59:30 -05:00
|
|
|
|
2010-12-11 00:22:17 -05:00
|
|
|
pry("friend":3)> jump_to 1
|
2010-12-08 19:59:30 -05:00
|
|
|
Ending Pry session for "friend"
|
|
|
|
Ending Pry session for 100
|
|
|
|
=> 100
|
|
|
|
pry(Hello):1>
|
|
|
|
|
2011-01-13 09:35:46 -05:00
|
|
|
If we just want to go back one level of nesting we can of course
|
2010-12-08 19:59:30 -05:00
|
|
|
use the `quit` or `exit` or `back` commands.
|
|
|
|
|
2010-12-11 00:22:17 -05:00
|
|
|
To break out of all levels of Pry nesting and return immediately to the
|
2010-12-08 19:59:30 -05:00
|
|
|
calling process use `exit_all`:
|
|
|
|
|
2010-12-11 04:01:47 -05:00
|
|
|
pry("friend":3)> exit_all
|
2010-12-08 19:59:30 -05:00
|
|
|
Ending Pry session for "friend"
|
|
|
|
Ending Pry session for 100
|
|
|
|
Ending Pry session for Hello
|
|
|
|
Ending Pry session for main
|
|
|
|
=> main
|
2011-01-13 09:35:46 -05:00
|
|
|
|
2010-12-08 19:59:30 -05:00
|
|
|
# program resumes here
|
2010-12-08 07:06:49 -05:00
|
|
|
|
2010-12-08 06:39:06 -05:00
|
|
|
Features and limitations
|
|
|
|
------------------------
|
|
|
|
|
|
|
|
Pry is an irb-like clone with an emphasis on interactively examining
|
|
|
|
and manipulating objects during the running of a program.
|
|
|
|
|
|
|
|
Its primary utility is probably in debugging, though it may have other
|
|
|
|
uses (such as implementing a quake-like console for games, for example). Here is a
|
|
|
|
list of Pry's features along with some of its limitations given at the
|
|
|
|
end.
|
|
|
|
|
2011-01-19 03:40:43 -05:00
|
|
|
###Features:
|
2010-12-08 07:06:49 -05:00
|
|
|
|
2010-12-08 06:39:06 -05:00
|
|
|
* Pry can be invoked at any time and on any object in the running program.
|
2010-12-08 19:59:30 -05:00
|
|
|
* Pry sessions can nest arbitrarily deeply -- to go back one level of nesting type 'exit' or 'quit' or 'back'
|
|
|
|
* Use `_` to recover last result.
|
2011-01-09 06:51:45 -05:00
|
|
|
* Use `_pry_` to reference the Pry instance managing the current session.
|
2011-01-12 08:03:45 -05:00
|
|
|
* Pry supports tab completion.
|
2010-12-08 06:39:06 -05:00
|
|
|
* Pry has multi-line support built in.
|
2011-01-09 06:51:45 -05:00
|
|
|
* Pry has special commands not found in many other Ruby REPLs: `show_method`, `show_doc`
|
2010-12-18 06:21:58 -05:00
|
|
|
`jump_to`, `ls`, `cd`, `cat`
|
2010-12-11 00:22:17 -05:00
|
|
|
* Pry gives good control over nested sessions (important when exploring complicated runtime state)
|
2010-12-08 09:57:50 -05:00
|
|
|
* Pry is not based on the IRB codebase.
|
2011-01-15 03:57:50 -05:00
|
|
|
* Pry allows significant customizability.
|
2010-12-16 23:56:50 -05:00
|
|
|
* Pry uses [RubyParser](https://github.com/seattlerb/ruby_parser) to
|
|
|
|
validate expressions in 1.8, and [Ripper](http://rdoc.info/docs/ruby-core/1.9.2/Ripper) for 1.9.
|
|
|
|
* Pry implements all the methods in the REPL chain separately: `Pry#r`
|
|
|
|
for reading; `Pry#re` for eval; `Pry#rep` for printing; and `Pry#repl`
|
|
|
|
for the loop (`Pry.start` simply wraps `Pry.new.repl`). You can
|
2010-12-08 07:06:49 -05:00
|
|
|
invoke any of these methods directly depending on exactly what aspect of the functionality you need.
|
|
|
|
|
2011-01-19 03:40:43 -05:00
|
|
|
###Limitations:
|
2010-12-08 07:06:49 -05:00
|
|
|
|
|
|
|
* Pry does not pretend to be a replacement for `irb`,
|
|
|
|
and so does not have an executable. It is designed to be used by
|
|
|
|
other programs, not on its own. For a full-featured `irb` replacement
|
|
|
|
see [ripl](https://github.com/cldwalker/ripl)
|
2010-12-18 20:45:05 -05:00
|
|
|
* Pry's `show_method` and `show_doc` commands do not work
|
2010-12-16 23:56:50 -05:00
|
|
|
in Ruby 1.8.
|
2011-01-13 09:35:46 -05:00
|
|
|
|
2010-12-08 08:49:28 -05:00
|
|
|
Commands
|
|
|
|
-----------
|
|
|
|
|
2010-12-11 00:22:17 -05:00
|
|
|
### The Pry API:
|
2010-12-08 08:49:28 -05:00
|
|
|
|
2010-12-16 23:56:50 -05:00
|
|
|
* `Pry.start()` Starts a Read-Eval-Print-Loop on the object it
|
|
|
|
receives as a parameter. In the case of no parameter it operates on
|
|
|
|
top-level (main). It can receive any object or a `Binding`
|
|
|
|
object as parameter. `Pry.start()` is implemented as `Pry.new.repl()`
|
2011-01-09 06:51:45 -05:00
|
|
|
* `obj.pry` and `pry(obj)` may also be used as alternative syntax to
|
|
|
|
`Pry.start(obj)`.
|
|
|
|
|
|
|
|
However there are some differences. `obj.pry` opens
|
|
|
|
a Pry session on the receiver whereas `Pry.start` (with no parameter)
|
|
|
|
will start a Pry session on top-level. The other form of the `pry`
|
|
|
|
method: `pry(obj)` will also start a Pry session on its parameter.
|
|
|
|
|
|
|
|
The `pry` method invoked by itself, with no explict receiver and no
|
|
|
|
parameter will start a Pry session on the implied receiver. It is
|
|
|
|
perhaps more useful to invoke it in this form `pry(binding)` or
|
|
|
|
`binding.pry` so as to get access to locals in the current context.
|
|
|
|
|
|
|
|
Another difference is that `Pry.start()` accepts a second parameter
|
|
|
|
that is a hash of configuration options (discussed further, below).
|
|
|
|
|
2010-12-16 23:56:50 -05:00
|
|
|
* If, for some reason you do not want to 'loop' then use `Pry.new.rep()`; it
|
2010-12-08 08:49:28 -05:00
|
|
|
only performs the Read-Eval-Print section of the REPL - it ends the
|
|
|
|
session after just one line of input. It takes the same parameters as
|
2011-01-13 09:35:46 -05:00
|
|
|
`Pry#repl()`
|
2010-12-16 23:56:50 -05:00
|
|
|
* Likewise `Pry#re()` only performs the Read-Eval section of the REPL,
|
2010-12-08 10:06:25 -05:00
|
|
|
it returns the result of the evaluation or an Exception object in
|
2010-12-16 23:56:50 -05:00
|
|
|
case of error. It also takes the same parameters as `Pry#repl()`
|
|
|
|
* Similarly `Pry#r()` only performs the Read section of the REPL, only
|
2010-12-08 10:06:25 -05:00
|
|
|
returning the Ruby expression (as a string). It takes the same parameters as all the others.
|
2010-12-08 08:49:28 -05:00
|
|
|
|
2010-12-11 00:22:17 -05:00
|
|
|
### Session commands
|
|
|
|
|
|
|
|
Pry supports a few commands inside the session itself. These commands are
|
2010-12-08 19:59:30 -05:00
|
|
|
not methods and must start at the beginning of a line, with no
|
|
|
|
whitespace in between.
|
|
|
|
|
|
|
|
If you want to access a method of the same name, prefix the invocation by whitespace.
|
2010-12-08 08:49:28 -05:00
|
|
|
|
|
|
|
* Typing `!` on a line by itself will refresh the REPL - useful for
|
|
|
|
getting you out of a situation if the parsing process
|
|
|
|
goes wrong.
|
2010-12-11 04:01:47 -05:00
|
|
|
* `status` shows status information about the current session.
|
|
|
|
* `help` shows the list of session commands with brief explanations.
|
2010-12-08 19:59:30 -05:00
|
|
|
* `exit` or `quit` or `back` will end the current Pry session and go
|
2010-12-11 00:22:17 -05:00
|
|
|
back to the calling process or back one level of nesting (if there
|
|
|
|
are nested sessions).
|
2010-12-16 23:56:50 -05:00
|
|
|
* `ls` returns a list of local variables and instance variables in the
|
|
|
|
current scope
|
2011-01-21 04:44:28 -05:00
|
|
|
* `ls_methods` List all methods defined on immediate class of receiver.
|
|
|
|
* `ls_imethods` List all instance methods defined on receiver.
|
2011-01-09 06:51:45 -05:00
|
|
|
* `cat <var>` Calls `inspect` on `<var>`
|
|
|
|
* `cd <var>` Starts a `Pry` session on the variable <var>. E.g `cd @x`
|
2010-12-16 23:56:50 -05:00
|
|
|
* `show_method <methname>` Displays the sourcecode for the method
|
|
|
|
<methname>. E.g `show_method hello`
|
2010-12-18 07:54:16 -05:00
|
|
|
* `show_imethod <methname>` Displays the sourcecode for the
|
2010-12-18 08:00:58 -05:00
|
|
|
instance method <methname>. E.g `show_imethod goodbye`
|
2010-12-18 07:54:16 -05:00
|
|
|
* `show_doc <methname>` Displays comments for `<methname>`
|
|
|
|
* `show_idoc <methname>` Displays comments for instance
|
2010-12-18 06:21:58 -05:00
|
|
|
method `<methname>`
|
2010-12-08 19:59:30 -05:00
|
|
|
* `exit_program` or `quit_program` will end the currently running
|
|
|
|
program.
|
2011-01-09 06:51:45 -05:00
|
|
|
* `nesting` Shows Pry nesting information.
|
|
|
|
* `!pry` Starts a Pry session on the implied receiver; this can be
|
|
|
|
used in the middle of an expression in multi-line input.
|
|
|
|
* `jump_to <nest_level>` Unwinds the Pry stack (nesting level) until the appropriate nesting level is reached
|
2010-12-08 19:59:30 -05:00
|
|
|
-- as per the output of `nesting`
|
|
|
|
* `exit_all` breaks out of all Pry nesting levels and returns to the
|
|
|
|
calling process.
|
|
|
|
* You can type `Pry.start(obj)` or `obj.pry` to nest another Pry session within the
|
2010-12-08 08:49:28 -05:00
|
|
|
current one with `obj` as the receiver of the new session. Very useful
|
|
|
|
when exploring large or complicated runtime state.
|
2010-12-08 07:06:49 -05:00
|
|
|
|
2011-01-21 01:09:21 -05:00
|
|
|
Example Programs
|
|
|
|
----------------
|
|
|
|
|
|
|
|
Pry comes bundled with a few example programs to illustrate some
|
|
|
|
features, see the `examples/` directory.
|
|
|
|
|
2011-01-21 04:17:12 -05:00
|
|
|
* `example_input.rb` - Demonstrates how to set the `input` object.
|
|
|
|
* `example_output.rb` - Demonstrates how to set the `output` object.
|
|
|
|
* `example_hooks.rb` - Demonstrates how to set the `hooks` hash.
|
|
|
|
* `example_print.rb` - Demonstrates how to set the `print` object.
|
|
|
|
* `example_prompt.rb` - Demonstrates how to set the `prompt`.
|
|
|
|
* `example_input2.rb` - An advanced `input` example.
|
|
|
|
* `example_commands.rb` - Implementing a mathematical command set.
|
|
|
|
* `example_commands_override.rb` - An advanced `commands` example.
|
|
|
|
* `example_image_edit.rb` - A simple image editor using a Pry REPL (requires `Gosu` and `TexPlay` gems).
|
|
|
|
|
2011-01-09 06:51:45 -05:00
|
|
|
Customizing Pry
|
|
|
|
---------------
|
|
|
|
|
|
|
|
Pry supports customization of the input, the output, the commands,
|
|
|
|
the hooks, the prompt, and 'print' (the "P" in REPL).
|
|
|
|
|
|
|
|
Global customization, which applies to all Pry sessions, is done
|
|
|
|
through invoking class accessors on the `Pry` class, the accessors
|
|
|
|
are:
|
|
|
|
|
|
|
|
* `Pry.input=`
|
|
|
|
* `Pry.output=`
|
|
|
|
* `Pry.commands=`
|
|
|
|
* `Pry.hooks=`
|
|
|
|
* `Pry.prompt=`
|
|
|
|
* `Pry.print=`
|
|
|
|
|
|
|
|
Local customization (applied to a single Pry session) is done by
|
|
|
|
passing config hash options to `Pry.start()` or to `Pry.new()`; also the
|
2011-01-13 09:35:46 -05:00
|
|
|
same accessors as described above for the `Pry` class exist for a
|
|
|
|
Pry instance so that customization can occur during runtime.
|
2011-01-09 06:51:45 -05:00
|
|
|
|
2011-01-19 03:40:43 -05:00
|
|
|
### Input
|
2011-01-09 06:51:45 -05:00
|
|
|
|
2011-01-12 08:03:45 -05:00
|
|
|
For input Pry accepts any object that implements the `readline` method. This
|
|
|
|
includes `IO` objects, `StringIO`, `Readline` and custom objects. Pry
|
|
|
|
initially defaults to using `Readline` for input.
|
|
|
|
|
|
|
|
#### Example: Setting global input
|
|
|
|
|
|
|
|
Setting Pry's global input causes all subsequent Pry instances to use
|
|
|
|
this input by default:
|
|
|
|
|
|
|
|
Pry.input = StringIO.new("@x = 10\nexit")
|
|
|
|
Object.pry
|
2011-01-13 09:35:46 -05:00
|
|
|
|
2011-01-12 08:03:45 -05:00
|
|
|
Object.instance_variable_get(:@x) #=> 10
|
|
|
|
|
|
|
|
The above will execute the code in the `StringIO`
|
|
|
|
non-interactively. It gets all the input it needs from the `StringIO`
|
|
|
|
and then exits the Pry session. Note it is important to end the
|
|
|
|
session with 'exit' if you are running non-interactively or the Pry
|
|
|
|
session will hang as it loops indefinitely awaiting new input.
|
|
|
|
|
|
|
|
#### Example: Setting input for a specific session
|
|
|
|
|
|
|
|
The settings for a specific session override the global settings
|
|
|
|
(discussed above). There are two ways to set input for a specific pry session: At the
|
2011-01-13 09:35:46 -05:00
|
|
|
point the session is started, or within the session itself (at runtime):
|
2011-01-12 08:03:45 -05:00
|
|
|
|
2011-01-13 09:35:46 -05:00
|
|
|
##### At session start
|
2011-01-12 08:03:45 -05:00
|
|
|
|
|
|
|
Pry.start(Object, :input => StringIO.new("@x = 10\nexit"))
|
|
|
|
Object.instance_variable_get(:@x) #=> 10
|
|
|
|
|
2011-01-13 09:35:46 -05:00
|
|
|
##### At runtime
|
|
|
|
|
2011-01-12 08:03:45 -05:00
|
|
|
If you want to set the input object within the session itself you use
|
|
|
|
the special `_pry_` local variable which represents the Pry instance
|
|
|
|
managing the current session; inside the session we type:
|
|
|
|
|
|
|
|
_pry_.input = StringIO.new("@x = 10\nexit")
|
|
|
|
|
2011-01-13 09:35:46 -05:00
|
|
|
Note we can also set the input object for the parent Pry session (if
|
|
|
|
the current session is nested) like so:
|
|
|
|
|
|
|
|
_pry_.parent.input = StringIO.new("@x = 10\nexit")
|
|
|
|
|
2011-01-12 08:03:45 -05:00
|
|
|
### Output
|
|
|
|
|
|
|
|
For output Pry accepts any object that implements the `puts` method. This
|
|
|
|
includes `IO` objects, `StringIO` and custom objects. Pry initially
|
|
|
|
defaults to using `$stdout` for output.
|
|
|
|
|
|
|
|
#### Example: Setting global output
|
|
|
|
|
|
|
|
Setting Pry's global output causes all subsequent Pry instances to use
|
|
|
|
this output by default:
|
|
|
|
|
|
|
|
Pry.output = StringIO.new
|
|
|
|
|
|
|
|
#### Example: Setting output for a specific session
|
|
|
|
|
|
|
|
As per Input, given above, we set the local output as follows:
|
|
|
|
|
2011-01-13 09:35:46 -05:00
|
|
|
##### At session start
|
2011-01-12 08:03:45 -05:00
|
|
|
|
|
|
|
Pry.start(Object, :output => StringIO.new("@x = 10\nexit"))
|
|
|
|
|
2011-01-13 09:35:46 -05:00
|
|
|
##### At runtime
|
|
|
|
|
2011-01-12 08:03:45 -05:00
|
|
|
_pry_.output = StringIO.new
|
|
|
|
|
|
|
|
### Commands
|
|
|
|
|
|
|
|
Pry commands are not methods; they are commands that are intercepted
|
|
|
|
and executed before a Ruby eval takes place. Pry comes with a default
|
2011-01-13 09:35:46 -05:00
|
|
|
command set (`Pry::Commands`), but these commands can be augmented or overriden by
|
2011-01-12 08:03:45 -05:00
|
|
|
user-specified ones.
|
|
|
|
|
2011-01-20 09:41:41 -05:00
|
|
|
The Pry command API is quite sophisticated supporting features such as:
|
|
|
|
command set inheritance, importing of specific commands from another
|
|
|
|
command set, deletion of commands, calling of commands within other
|
|
|
|
commands, and so on.
|
|
|
|
|
2011-01-12 08:03:45 -05:00
|
|
|
A valid Pry command object must inherit from
|
2011-01-21 04:17:12 -05:00
|
|
|
`Pry::CommandBase` (or one of its subclasses) and use the special command API:
|
2011-01-12 08:03:45 -05:00
|
|
|
|
|
|
|
#### Example: Defining a command object and setting it globally
|
|
|
|
|
|
|
|
class MyCommands < Pry::CommandBase
|
2011-01-20 20:15:25 -05:00
|
|
|
command "greet", "Greet the user." do |name|
|
2011-01-20 09:41:41 -05:00
|
|
|
output.puts "Hello #{name.capitalize}, how are you?"
|
2011-01-12 08:03:45 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
Pry.commands = MyCommands
|
|
|
|
|
|
|
|
Then inside a pry session:
|
|
|
|
|
2011-01-20 09:41:41 -05:00
|
|
|
pry(main)> greet john
|
|
|
|
hello John, how are you?
|
2011-01-12 08:03:45 -05:00
|
|
|
=> nil
|
|
|
|
|
|
|
|
#### Example: Using a command object in a specific session
|
|
|
|
|
|
|
|
As in the case of `input` and `output`:
|
|
|
|
|
2011-01-13 09:35:46 -05:00
|
|
|
##### At session start:
|
2011-01-20 09:41:41 -05:00
|
|
|
|
2011-01-12 08:03:45 -05:00
|
|
|
Pry.start(self, :commands => MyCommands)
|
|
|
|
|
2011-01-13 09:35:46 -05:00
|
|
|
##### At runtime:
|
|
|
|
|
2011-01-12 08:03:45 -05:00
|
|
|
_pry_.commands = MyCommands
|
|
|
|
|
|
|
|
#### The command API
|
|
|
|
|
|
|
|
The command API is defined by the `Pry::CommandBase` class (hence why
|
2011-01-20 09:41:41 -05:00
|
|
|
all commands must inherit from it or a subclass). The API works as follows:
|
2011-01-12 08:03:45 -05:00
|
|
|
|
2011-01-21 04:17:12 -05:00
|
|
|
##### `command` method
|
|
|
|
|
|
|
|
The `command` method defines a new command, its parameter is the
|
2011-01-18 09:53:51 -05:00
|
|
|
name of the command and an optional second parameter is a description of
|
|
|
|
the command.
|
|
|
|
|
|
|
|
The associated block defines the action to be performed. The number of
|
|
|
|
parameters in the block determine the number of parameters that will
|
|
|
|
be sent to the command (from the Pry prompt) when it is invoked. Note
|
|
|
|
that all parameters that are received will be strings; if a parameter
|
|
|
|
is not received it will be set to `nil`.
|
|
|
|
|
|
|
|
command "hello" do |x, y, z|
|
|
|
|
puts "hello there #{x}, #{y}, and #{z}!"
|
|
|
|
end
|
|
|
|
|
|
|
|
Command aliases can also be defined - simply use an array of strings
|
|
|
|
for the command name - all these strings will be valid names for the
|
|
|
|
command.
|
|
|
|
|
|
|
|
command ["ls", "dir"], "show a list of local vars" do
|
2011-01-20 09:41:41 -05:00
|
|
|
output.puts target.eval("local_variables")
|
2011-01-18 09:53:51 -05:00
|
|
|
end
|
2011-01-12 08:03:45 -05:00
|
|
|
|
2011-01-21 04:17:12 -05:00
|
|
|
##### `delete` method
|
2011-01-20 09:41:41 -05:00
|
|
|
|
2011-01-21 04:17:12 -05:00
|
|
|
The `delete` method deletes a command or a group of a commands; it
|
|
|
|
can be useful when inheriting from another command set when you decide
|
|
|
|
to keep only a portion of inherited commands.
|
2011-01-20 09:41:41 -05:00
|
|
|
|
2011-01-21 04:17:12 -05:00
|
|
|
class MyCommands < Pry::Commands
|
|
|
|
delete "show_method", "show_imethod"
|
|
|
|
end
|
2011-01-20 09:41:41 -05:00
|
|
|
|
2011-01-21 04:17:12 -05:00
|
|
|
##### `import_from` method
|
2011-01-20 09:41:41 -05:00
|
|
|
|
2011-01-21 04:17:12 -05:00
|
|
|
The `import_from` method enables you to specifically select which
|
|
|
|
commands will be copied across from another command set, useful when
|
|
|
|
you only want a small number of commands and so inheriting and then
|
|
|
|
deleting would be inefficient. The first parameter to `import_from`
|
|
|
|
is the class to import from and the other paramters are the names of
|
|
|
|
the commands to import:
|
2011-01-12 08:03:45 -05:00
|
|
|
|
2011-01-21 04:17:12 -05:00
|
|
|
class MyCommands < Pry::CommandBase
|
|
|
|
import_from Pry::Commands, "ls", "status", "!"
|
|
|
|
end
|
|
|
|
|
|
|
|
##### `run` method
|
|
|
|
|
|
|
|
The `run` command invokes one command from within another.
|
|
|
|
The first parameter is the name of the command to invoke
|
|
|
|
and the remainder of the parameters will be passed on to the command
|
|
|
|
being invoked:
|
|
|
|
|
|
|
|
class MyCommands < Pry::Commands
|
|
|
|
command "ls_with_hello" do
|
|
|
|
output.puts "hello!"
|
|
|
|
run "ls"
|
2011-01-20 09:41:41 -05:00
|
|
|
end
|
2011-01-21 04:17:12 -05:00
|
|
|
end
|
2011-01-20 09:41:41 -05:00
|
|
|
|
|
|
|
#### Utility methods for commands
|
|
|
|
|
|
|
|
All commands can access the special `output` and `target` methods. The
|
|
|
|
`output` method returns the `output` object for the active pry session.
|
|
|
|
Ensuring that your commands invoke `puts` on this rather than using
|
|
|
|
the top-level `puts` will ensure that all your session output goes to
|
|
|
|
the same place.
|
|
|
|
|
|
|
|
The `target` method returns the `Binding` object the Pry session is currently
|
|
|
|
active on - useful when your commands need to manipulate or examine
|
|
|
|
the state of the object. E.g, the "ls" command is implemented as follows
|
2011-01-12 08:03:45 -05:00
|
|
|
|
2011-01-20 09:41:41 -05:00
|
|
|
command "ls" do
|
|
|
|
output.puts target.eval("local_variables + instance_variables").inspect
|
|
|
|
end
|
|
|
|
|
|
|
|
#### The opts hash
|
|
|
|
|
2011-01-20 21:46:56 -05:00
|
|
|
These are miscellaneous variables that may be useful to your commands:
|
2011-01-12 08:03:45 -05:00
|
|
|
|
|
|
|
* `opts[:val]` - The line of input that invoked the command.
|
|
|
|
* `opts[:eval_string]` - The cumulative lines of input for multi-line input.
|
|
|
|
* `opts[:nesting]` - Lowlevel session nesting information.
|
2011-01-20 09:41:41 -05:00
|
|
|
* `opts[:commands]` - Lowlevel data of all Pry commands.
|
2011-01-12 08:03:45 -05:00
|
|
|
|
|
|
|
(see commands.rb for examples of how some of these options are used)
|
|
|
|
|
|
|
|
#### The `help` command
|
|
|
|
|
|
|
|
The `Pry::CommandBase` class automatically defines a `help` command
|
|
|
|
for you. Typing `help` in a Pry session will show a list of commands
|
|
|
|
to the user followed by their descriptions. Passing a parameter to
|
2011-01-18 09:53:51 -05:00
|
|
|
`help` with the command name will just return the description of that
|
2011-01-20 09:41:41 -05:00
|
|
|
specific command. If a description is left out it will automatically
|
|
|
|
be given the description "No description.".
|
|
|
|
|
|
|
|
If the description is explicitly set to `""` then this command will
|
|
|
|
not be displayed in `help`.
|
2011-01-09 06:51:45 -05:00
|
|
|
|
2011-01-13 09:35:46 -05:00
|
|
|
### Hooks
|
|
|
|
|
|
|
|
Currently Pry supports just two hooks: `before_session` and
|
|
|
|
`after_session`. These hooks are invoked before a Pry session starts
|
|
|
|
and after a session ends respectively. The default hooks used are
|
|
|
|
stored in the `Pry::DEFAULT_HOOKS` and just output the text `"Beginning
|
|
|
|
Pry session for <obj>"` and `"Ending Pry session for <obj>"`.
|
|
|
|
|
|
|
|
#### Example: Setting global hooks
|
|
|
|
|
|
|
|
All subsequent Pry instances will use these hooks as default:
|
|
|
|
|
|
|
|
Pry.hooks = {
|
|
|
|
:before_session => proc { |out, obj| out.puts "Opened #{obj}" },
|
|
|
|
:after_session => proc { |out, obj| out.puts "Closed #{obj}" }
|
|
|
|
}
|
|
|
|
|
|
|
|
5.pry
|
|
|
|
|
|
|
|
Inside the session:
|
2011-01-09 06:51:45 -05:00
|
|
|
|
2011-01-13 09:35:46 -05:00
|
|
|
Opened 5
|
|
|
|
pry(5)> exit
|
|
|
|
Closed 5
|
2011-01-09 06:51:45 -05:00
|
|
|
|
2011-01-13 09:35:46 -05:00
|
|
|
Note that the `before_session` and `after_session` procs receive the
|
|
|
|
current session's output object and session receiver as parameters.
|
|
|
|
|
|
|
|
#### Example: Setting hooks for a specific session
|
|
|
|
|
|
|
|
Like all the other customization options, the global default (as
|
|
|
|
explained above) can be overriden for a specific session, either at
|
|
|
|
session start or during runtime.
|
|
|
|
|
|
|
|
##### At session start
|
|
|
|
|
|
|
|
Pry.start(self, :hooks => { :before_session => proc { puts "hello world!" },
|
|
|
|
:after_session => proc { puts "goodbye world!" }
|
|
|
|
})
|
|
|
|
|
|
|
|
##### At runtime
|
|
|
|
|
|
|
|
_pry_.hooks = { :before_session => proc { puts "puts "hello world!" } }
|
2011-01-14 06:12:43 -05:00
|
|
|
|
|
|
|
### Prompts
|
|
|
|
|
|
|
|
The Pry prompt is used by `Readline` and other input objects that
|
|
|
|
accept a prompt. Pry can accept two prompt-types for every prompt; the
|
|
|
|
'main prompt' and the 'wait prompt'. The main prompt is always used
|
|
|
|
for the first line of input; the wait prompt is used in multi-line
|
|
|
|
input to indicate that the current expression is incomplete and more lines of
|
|
|
|
input are required. The default Prompt used by Pry is stored in the
|
|
|
|
`Pry::DEFAULT_PROMPT` constant.
|
|
|
|
|
2011-01-18 09:53:51 -05:00
|
|
|
A valid Pry prompt is either a single `Proc` object or a two element
|
2011-01-14 06:12:43 -05:00
|
|
|
array of `Proc` objects. When an array is used the first element is
|
|
|
|
the 'main prompt' and the last element is the 'wait prompt'. When a
|
|
|
|
single `Proc` object is used it will be used for both the main prompt
|
|
|
|
and the wait prompt.
|
|
|
|
|
|
|
|
#### Example: Setting global prompt
|
|
|
|
|
|
|
|
The prompt `Proc` objects are passed the receiver of the Pry session
|
|
|
|
and the nesting level of that session as parameters (they can simply
|
|
|
|
ignore these if they do not need them).
|
|
|
|
|
|
|
|
# Using one proc for both main and wait prompts
|
|
|
|
Pry.prompt = proc { |obj, nest_level| "#{obj}:#{nest_level}> " }
|
|
|
|
|
|
|
|
# Alternatively, provide two procs; one for main and one for wait
|
|
|
|
Pry.prompt = [ proc { "ENTER INPUT> " }, proc { "MORE INPUT REQUIRED!* " }]
|
|
|
|
|
|
|
|
#### Example: Setting the prompt for a specific session
|
|
|
|
|
|
|
|
##### At session start
|
|
|
|
|
|
|
|
Pry.start(self, :prompt => [proc { "ENTER INPUT> " },
|
|
|
|
proc { "MORE INPUT REQUIRED!* " }])
|
|
|
|
|
|
|
|
##### At runtime
|
|
|
|
|
|
|
|
_pry_.prompt = [proc { "ENTER INPUT> " },
|
|
|
|
proc { "MORE INPUT REQUIRED!* " }]
|
|
|
|
|
|
|
|
### Print
|
|
|
|
|
|
|
|
The Print phase of Pry's READ-EVAL-PRINT-LOOP can be customized. The
|
|
|
|
default action is stored in the `Pry::DEFAULT_PRINT` constant and it
|
|
|
|
simply outputs the value of the current expression preceded by a `=>` (or the first
|
|
|
|
line of the backtrace if the value is an `Exception` object.)
|
|
|
|
|
|
|
|
The print object should be a `Proc` and the parameters passed to the
|
|
|
|
`Proc` are the output object for the current session and the 'value'
|
|
|
|
returned by the current expression.
|
|
|
|
|
2011-01-19 03:40:43 -05:00
|
|
|
#### Example: Setting global print object
|
2011-01-14 06:12:43 -05:00
|
|
|
|
|
|
|
Let's define a print object that displays the full backtrace of any
|
|
|
|
exception and precedes the output of a value by the text `"Output is: "`:
|
|
|
|
|
|
|
|
Pry.print = proc do |output, value|
|
|
|
|
case value
|
|
|
|
when Exception
|
|
|
|
output.puts value.backtrace
|
|
|
|
else
|
|
|
|
output.puts "Output is: #{value}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-01-19 03:40:43 -05:00
|
|
|
#### Example: Setting the print object for a specific session
|
2011-01-14 06:12:43 -05:00
|
|
|
|
|
|
|
##### At session start
|
|
|
|
|
|
|
|
Pry.start(self, :print => proc do |output, value|
|
|
|
|
case value
|
|
|
|
when Exception
|
|
|
|
output.puts value.backtrace
|
|
|
|
else
|
|
|
|
output.puts "Output is: #{value.inspect}"
|
|
|
|
end
|
2011-01-18 09:53:51 -05:00
|
|
|
end)
|
2011-01-14 06:12:43 -05:00
|
|
|
|
|
|
|
##### At runtime
|
|
|
|
|
|
|
|
_pry_.print = proc do |output, value|
|
|
|
|
case value
|
|
|
|
when Exception
|
|
|
|
output.puts value.backtrace
|
|
|
|
else
|
|
|
|
output.puts "Output is: #{value.inspect}"
|
|
|
|
end
|
|
|
|
end
|
2011-01-13 09:35:46 -05:00
|
|
|
|
2010-12-08 02:30:38 -05:00
|
|
|
Contact
|
|
|
|
-------
|
|
|
|
|
|
|
|
Problems or questions contact me at [github](http://github.com/banister)
|
|
|
|
|
|
|
|
|
|
|
|
|
2011-01-19 03:50:45 -05:00
|
|
|
|