Sha256: 0f158318b52d2d2bfa7e1939f9c608521ed99ae0aa38afd08f2ce644586a35e5
Contents?: true
Size: 452 Bytes
Versions: 19
Compression:
Stored size: 452 Bytes
Contents
require 'byebug/processors/command_processor' module Byebug # # Processes commands when there's not program running # class ControlProcessor < CommandProcessor def initialize(context = nil) @context = context end # # 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
19 entries across 18 versions & 3 rubygems