Class: Debugger::QuitCommand
- Inherits:
-
Command
- Object
- SimpleDelegator
- Command
- Debugger::QuitCommand
show all
- Defined in:
- lib/ruby-debug-ide/commands/control.rb
Overview
Constant Summary
Constants inherited
from Command
Command::DEF_OPTIONS
Class Method Summary
collapse
Instance Method Summary
collapse
Methods inherited from Command
commands, file_filter_supported?, #find, inherited, #initialize, load_commands, #match, method_missing, options, unescape_incoming
Class Method Details
.help(cmd) ⇒ Object
23
24
25
26
27
28
|
# File 'lib/ruby-debug-ide/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-ide/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-ide/commands/control.rb', line 9
def execute
begin
@printer.print_msg("finished")
@printer.print_debug("Exiting debugger.")
ensure
exit! end
end
|
#regexp ⇒ Object
5
6
7
|
# File 'lib/ruby-debug-ide/commands/control.rb', line 5
def regexp
/^\s*(?:q(?:uit)?|exit)\s*$/
end
|