Sha256: 34545659bb80a9ab702b55770019574abf750254f0b65c6b5a5e1407e3103bf5
Contents?: true
Size: 405 Bytes
Versions: 6
Compression:
Stored size: 405 Bytes
Contents
module Byebug # # Setting for automatically listing source code on every stop. # class AutolistSetting < Setting DEFAULT = 1 def initialize ListCommand.always_run = DEFAULT end def banner 'Invoke list command on every stop' end def value=(v) ListCommand.always_run = v ? 1 : 0 end def value ListCommand.always_run == 1 end end end
Version data entries
6 entries across 6 versions & 1 rubygems