Sha256: 822bd5eb1e62759700e8ac2dbea191412220cd02b5642e1a6b04c35c4b20b2e1
Contents?: true
Size: 371 Bytes
Versions: 10
Compression:
Stored size: 371 Bytes
Contents
require 'byebug/state' module Byebug # # Controls state of Byebug's REPL when in control mode # class ControlState < State def proceed end extend Forwardable def_delegators :@interface, :errmsg, :puts def confirm(*_args) 'y' end def context nil end def file errmsg 'No filename given.' end end end
Version data entries
10 entries across 9 versions & 3 rubygems