Sha256: ab771f95613ac4ba778314c2b7a5e44d63df0589ee90587fc01a900481c5fa08
Contents?: true
Size: 385 Bytes
Versions: 6
Compression:
Stored size: 385 Bytes
Contents
module Byebug # # Setting for automatically invoking IRB on every stop. # class AutoirbSetting < Setting DEFAULT = 0 def initialize IrbCommand.always_run = DEFAULT end def banner 'Invoke IRB on every stop' end def value=(v) IrbCommand.always_run = v ? 1 : 0 end def value IrbCommand.always_run == 1 end end end
Version data entries
6 entries across 6 versions & 1 rubygems