Class: Debugger::DetachCommand
- Inherits:
-
Command
- Object
- SimpleDelegator
- Command
- Debugger::DetachCommand
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
151
152
153
154
155
|
# File 'lib/ruby-debug-ide/commands/control.rb', line 151
def help(cmd)
%{
detach\ndetach debugger\nnote: this option is only for remote debugging (or local attach)
}
end
|
.help_command ⇒ Object
147
148
149
|
# File 'lib/ruby-debug-ide/commands/control.rb', line 147
def help_command
'detach'
end
|
Instance Method Details
#regexp ⇒ Object
134
135
136
|
# File 'lib/ruby-debug-ide/commands/control.rb', line 134
def regexp
/^\s*detach\s*$/
end
|