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



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

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

    #{short_description}
  DESCRIPTION
end

.regexpObject



18
19
20
# File 'lib/byebug/commands/thread.rb', line 18

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

.short_descriptionObject



30
31
32
# File 'lib/byebug/commands/thread.rb', line 30

def self.short_description
  "Commands to manipulate threads"
end