Class: Pry::REPL
Instance Attribute Summary collapse
-
#pry ⇒ Pry
The instance of Pry that the user is controlling.
Class Method Summary collapse
Instance Method Summary collapse
- #initialize(pry, options = {}) ⇒ REPL constructor
-
#start ⇒ Object?
Start the read-eval-print loop.
Methods included from Forwardable
Constructor Details
Instance Attribute Details
Class Method Details
Instance Method Details
#start ⇒ Object?
Start the read-eval-print loop.
36 37 38 39 40 41 |
# File 'lib/pry/repl.rb', line 36 def start prologue Pry::InputLock.for(:all).with_ownership { repl } ensure epilogue end |