Class: Byebug::ThreadCommand

Inherits:
Command
  • Object
show all
Includes:
Subcommands
Defined in:
lib/byebug/commands/thread.rb,
lib/byebug/commands/thread/list.rb,
lib/byebug/commands/thread/stop.rb,
lib/byebug/commands/thread/resume.rb,
lib/byebug/commands/thread/switch.rb,
lib/byebug/commands/thread/current.rb

Overview

Reopens the thread command to define the current subcommand

Defined Under Namespace

Classes: CurrentCommand, ListCommand, ResumeCommand, StopCommand, SwitchCommand

Instance Attribute Summary

Attributes inherited from Command

#processor

Class Method Summary collapse

Methods included from Subcommands

#execute, included

Methods inherited from Command

#arguments, columnize, #context, #frame, help, #initialize, match, to_s

Methods included from Helpers::StringHelper

#camelize, #deindent, #prettify

Constructor Details

This class inherits a constructor from Byebug::Command

Class Method Details

.descriptionObject



20
21
22
23
24
25
26
# File 'lib/byebug/commands/thread.rb', line 20

def self.description
  <<-EOD
    th[read] <subcommand>

    #{short_description}
  EOD
end

.regexpObject



16
17
18
# File 'lib/byebug/commands/thread.rb', line 16

def self.regexp
  /^\s* th(?:read)? (?:\s+ (.+))? \s*$/x
end

.short_descriptionObject



28
29
30
# File 'lib/byebug/commands/thread.rb', line 28

def self.short_description
  'Commands to manipulate threads'
end