Class: PryByebug::ExitAllCommand

Inherits:
Pry::Command::ExitAll
  • Object
show all
Defined in:
lib/pry-byebug/commands/exit_all.rb

Overview

Exit pry REPL with Byebug.stop

Instance Method Summary collapse

Instance Method Details

#processObject



6
7
8
9
10
# File 'lib/pry-byebug/commands/exit_all.rb', line 6

def process
  super
ensure
  Byebug.stop if Byebug.stoppable?
end