Sha256: 4e14a1bfa9b54b230c9fa0f6d623c79700ba1dd9e3b4711009e613a714c5e7bb
Contents?: true
Size: 357 Bytes
Versions: 18
Compression:
Stored size: 357 Bytes
Contents
# frozen_string_literal: true require "byebug/setting" module Byebug # # Setting to customize the maximum width of byebug's output. # class WidthSetting < Setting DEFAULT = 160 def banner "Number of characters per line in byebug's output" end def to_s "Maximum width of byebug's output is #{value}" end end end
Version data entries
18 entries across 18 versions & 8 rubygems