Sha256: a95564b3bb39e36b1e8db0687f8e2be5f4c93227326a3382a413da2e0b96d150
Contents?: true
Size: 404 Bytes
Versions: 18
Compression:
Stored size: 404 Bytes
Contents
# frozen_string_literal: true 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
18 entries across 18 versions & 8 rubygems