Sha256: 61a3a56266875dec34d4b123eebee83d5f4eaffc231914d41f5d3b9a307d8653
Contents?: true
Size: 696 Bytes
Versions: 6488
Compression:
Stored size: 696 Bytes
Contents
# frozen_string_literal: true require_relative "../subcommands" require_relative "../commands/thread/current" require_relative "../commands/thread/list" require_relative "../commands/thread/resume" require_relative "../commands/thread/stop" require_relative "../commands/thread/switch" module Byebug # # Manipulation of Ruby threads # class ThreadCommand < Command include Subcommands def self.regexp /^\s* th(?:read)? (?:\s+ (.+))? \s*$/x end def self.description <<-DESCRIPTION th[read] <subcommand> #{short_description} DESCRIPTION end def self.short_description "Commands to manipulate threads" end end end
Version data entries
6,488 entries across 6,485 versions & 29 rubygems