updated docs for more specific info on runtime invocation

This commit is contained in:
John Mair 2011-04-24 21:46:40 +12:00
parent e3a3a099a7
commit d52182c549
1 changed files with 4 additions and 1 deletions

View File

@ -113,7 +113,10 @@ the `jump-to` command:
Pry can be invoked in the middle of a running program. It opens a Pry
session at the point it's called and makes all program state at that
point available. When the session ends the program continues with any
point available. It can be invoked on any object using the
`my_object.pry` syntax or on the current binding (or any binding)
using `binding.pry`. The Pry session will then begin within the scope
of the object (or binding). When the session ends the program continues with any
modifications you made to it.
This functionality can be used for such things as: debugging,