Sha256: 4ae73c0970c876a5b8d5670372dfaa928f84bcb58d4d5f716c051bd335af1114
Contents?: true
Size: 415 Bytes
Versions: 18
Compression:
Stored size: 415 Bytes
Contents
# frozen_string_literal: true require "byebug/processors/command_processor" module Byebug # # Processes commands when there's not program running # class ControlProcessor < CommandProcessor # # Available commands # def commands super.select(&:allow_in_control) end # # Prompt shown before reading a command. # def prompt "(byebug:ctrl) " end end end
Version data entries
18 entries across 18 versions & 8 rubygems