Sha256: 8b6b3b91631e300cad51f1e238b116f5503c4cf6d48a5a91f60a6aa32ef7709f
Contents?: true
Size: 371 Bytes
Versions: 3
Compression:
Stored size: 371 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
3 entries across 3 versions & 3 rubygems