Class: Byebug::ThreadCommand::CurrentSubcommand

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

Overview

Information about the current thread

Instance Method Summary collapse

Methods included from Helpers::ThreadHelper

#context_from_thread, #display_context, #thread_arguments

Methods inherited from Command

#help, #initialize, #match, subcommands, to_name

Methods included from Helpers::StringHelper

#camelize, #prettify

Constructor Details

This class inherits a constructor from Byebug::Command

Instance Method Details

#descriptionObject



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

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

    #{short_description}
  EOD
end

#executeObject



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

def execute
  display_context(@state.context)
end

#regexpObject



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

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

#short_descriptionObject



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

def short_description
  'Shows current thread information'
end