Sha256: cbcb47c93dbc7d16be78a213d9e02402f1b6e0778dd6c70ae85b1916f3eb3cdf
Contents?: true
Size: 399 Bytes
Versions: 18
Compression:
Stored size: 399 Bytes
Contents
# frozen_string_literal: true require "byebug/setting" module Byebug # # Setting to customize the number of byebug commands to be saved in history. # class HistsizeSetting < Setting DEFAULT = 256 def banner "Maximum number of commands that can be stored in byebug history" end def to_s "Maximum size of byebug's command history is #{value}" end end end
Version data entries
18 entries across 18 versions & 8 rubygems