Class: Byebug::KillCommand

Inherits:
Command
  • Object
show all
Defined in:
lib/byebug/commands/kill.rb

Overview

Implements byebug “kill” command

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Command

command_exists?, commands, find, format_subcmd, format_subcmds, help, inherited, #initialize, load_commands, #match, register_setting_get, register_setting_set, register_setting_var, settings, settings_map, terminal_width

Constructor Details

This class inherits a constructor from Byebug::Command

Class Method Details

.descriptionObject



36
37
38
39
40
41
# File 'lib/byebug/commands/kill.rb', line 36

def description
  %{kill[ SIGNAL]

    Send [signal] to Process.pid
    Equivalent of Process.kill(Process.pid)}
end

.namesObject



32
33
34
# File 'lib/byebug/commands/kill.rb', line 32

def names
  %w(kill)
end

Instance Method Details

#executeObject



11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# File 'lib/byebug/commands/kill.rb', line 11

def execute
  if @match[1]
    signame = @match[1]
    unless Signal.list.member?(signame)
      errmsg("signal name #{signame} is not a signal I know about\n")
      return false
    end
    if 'KILL' == signame
        @state.interface.finalize
    end
  else
    if not confirm("Really kill? (y/n) ")
      return
    else
      signame = 'KILL'
    end
  end
  Process.kill(signame, Process.pid)
end

#regexpObject



7
8
9
# File 'lib/byebug/commands/kill.rb', line 7

def regexp
  /^\s* (?:kill) \s* (?:\s+(\S+))? \s*$/x
end