Sha256: e69ac81145c34fac57a340e7b00ec15f45151ab4bd77e976ccf5a6d47ec73dff
Contents?: true
Size: 462 Bytes
Versions: 36
Compression:
Stored size: 462 Bytes
Contents
require 'byebug/setting' require 'byebug/commands/list' 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
36 entries across 34 versions & 5 rubygems