Class: Pry::REPL
- Extended by:
- Forwardable
- Defined in:
- lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/pry-0.14.2/lib/pry/repl.rb
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
#initialize(pry, options = {}) ⇒ REPL
22 23 24 25 26 27 28 29 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/pry-0.14.2/lib/pry/repl.rb', line 22 def initialize(pry, = {}) @pry = pry @indent = Pry::Indent.new(pry) @readline_output = nil @pry.push_binding [:target] if [:target] end |