Class: Byebug::ThreadCommand::CurrentCommand

Inherits:
Command
  • Object
show all
Includes:
Helpers::ThreadHelper
Defined in:
lib/byebug/commands/thread/current.rb

Overview

Information about the current thread

Instance Attribute Summary

Attributes inherited from Command

#processor

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Helpers::ThreadHelper

#context_from_thread, #current_thread?, #display_context, #thread_arguments

Methods inherited from Command

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

Methods included from Helpers::StringHelper

#camelize, #prettify

Constructor Details

This class inherits a constructor from Byebug::Command

Class Method Details

.descriptionObject



18
19
20
21
22
23
24
# File 'lib/byebug/commands/thread/current.rb', line 18

def self.description
  <<-EOD
    th[read] c[urrent]

    #{short_description}
  EOD
end

.regexpObject



14
15
16
# File 'lib/byebug/commands/thread/current.rb', line 14

def self.regexp
  /^\s* c(?:urrent)? \s*$/x
end

.short_descriptionObject



26
27
28
# File 'lib/byebug/commands/thread/current.rb', line 26

def self.short_description
  'Shows current thread information'
end

Instance Method Details

#executeObject



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

def execute
  display_context(context)
end