Class: Debugger::QuitCommand
- Defined in:
- lib/ruby-debug/commands/control.rb
Overview
:nodoc:
Constant Summary
Constants inherited from Command
Class Method Summary collapse
Instance Method Summary collapse
Methods inherited from Command
commands, #find, inherited, #initialize, load_commands, #match, method_missing, options
Constructor Details
This class inherits a constructor from Debugger::Command
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Debugger::Command
Class Method Details
.help(cmd) ⇒ Object
23 24 25 26 27 28 |
# File 'lib/ruby-debug/commands/control.rb', line 23 def help(cmd) %{ q[uit]\texit from debugger, exit\talias to quit } end |
.help_command ⇒ Object
19 20 21 |
# File 'lib/ruby-debug/commands/control.rb', line 19 def help_command %w[quit exit] end |
Instance Method Details
#execute ⇒ Object
9 10 11 12 13 14 15 16 |
# File 'lib/ruby-debug/commands/control.rb', line 9 def execute begin @printer.print_msg("finished") @printer.print_debug("Exiting debugger.") ensure exit! # exit -> exit!: No graceful way to stop threads... end end |
#regexp ⇒ Object
5 6 7 |
# File 'lib/ruby-debug/commands/control.rb', line 5 def regexp /^\s*(?:q(?:uit)?|exit)\s*$/ end |