Sha256: 136841f2e7f28b3a274b3e3e288358aac82f03fb43b1af20dd675e4d51f2a428
Contents?: true
Size: 370 Bytes
Versions: 14
Compression:
Stored size: 370 Bytes
Contents
# frozen_string_literal: true require 'byebug/setting' module Byebug # # Setting to customize the verbosity level for stack frames. # class CallstyleSetting < Setting DEFAULT = 'long'.freeze def banner 'Set how you want method call parameters to be displayed' end def to_s "Frame display callstyle is '#{value}'" end end end
Version data entries
14 entries across 13 versions & 2 rubygems