Class: Debugger::StartCommand

Inherits:
Command
  • Object
show all
Defined in:
lib/debugger/commands/start.rb

Overview

:nodoc:

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.help(cmd) ⇒ Object



18
19
20
21
22
# File 'lib/debugger/commands/start.rb', line 18

def help(cmd)
  %{
    run prog script
  }
end

.help_commandObject



14
15
16
# File 'lib/debugger/commands/start.rb', line 14

def help_command
  'start'
end

Instance Method Details

#executeObject



9
10
11
# File 'lib/debugger/commands/start.rb', line 9

def execute
  DebuggerXml.proceed
end

#regexpObject



5
6
7
# File 'lib/debugger/commands/start.rb', line 5

def regexp
  /^\s*(start)\s*$/ix
end