Sha256: 09fc51c56f754b8edd8bde78f5d9ad0030c5017bdc631d51a3ffddd10425dbac
Contents?: true
Size: 418 Bytes
Versions: 18
Compression:
Stored size: 418 Bytes
Contents
# frozen_string_literal: true require "byebug/setting" module Byebug # # Setting to customize the file where byebug's history is saved. # class SavefileSetting < Setting DEFAULT = File.expand_path("#{ENV['HOME'] || '.'}/.byebug_save") def banner "File where settings are saved to. Default: ~/.byebug_save" end def to_s "The command history file is #{value}\n" end end end
Version data entries
18 entries across 18 versions & 8 rubygems