Sha256: ad6c5ec1e7005bb60dfa599fad08fa639fb5c69d2dbe7be1eefde61a071cd05b
Contents?: true
Size: 409 Bytes
Versions: 6770
Compression:
Stored size: 409 Bytes
Contents
# frozen_string_literal: true require_relative "../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
6,770 entries across 6,767 versions & 30 rubygems