Sha256: 4187d44c2be33b5e9300d6daeba652501bff2518ca412c15beaf478432e5e366
Contents?: true
Size: 373 Bytes
Versions: 20
Compression:
Stored size: 373 Bytes
Contents
require 'byebug/setting' module Byebug # # Setting to customize the file where byebug's history is saved. # class HistfileSetting < Setting DEFAULT = File.expand_path('.byebug_history') def banner 'File where cmd history is saved to. Default: ./.byebug_history' end def to_s "The command history file is #{value}\n" end end end
Version data entries
20 entries across 19 versions & 3 rubygems