Sha256: fce25d1af09dc05e315213377f504287b70ade235d337aafb1cd450b0f89ec02
Contents?: true
Size: 362 Bytes
Versions: 6488
Compression:
Stored size: 362 Bytes
Contents
# frozen_string_literal: true require_relative "../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
6,488 entries across 6,485 versions & 29 rubygems