Sha256: 3b3243ab868258b5c66904cbd1f79dbe5fab092aaa47e37b90a2bf251d7ffe66
Contents?: true
Size: 696 Bytes
Versions: 6770
Compression:
Stored size: 696 Bytes
Contents
# frozen_string_literal: true require_relative "../../helpers/thread" module Byebug # # Reopens the +thread+ command to define the +current+ subcommand # class ThreadCommand < Command # # Information about the current thread # class CurrentCommand < Command include Helpers::ThreadHelper def self.regexp /^\s* c(?:urrent)? \s*$/x end def self.description <<-DESCRIPTION th[read] c[urrent] #{short_description} DESCRIPTION end def self.short_description "Shows current thread information" end def execute display_context(context) end end end end
Version data entries
6,770 entries across 6,767 versions & 30 rubygems