Sha256: 612c9ca3fb66f856db9992f4d2b5dcf3e06ac00da14604e44697d4d6beef8a27

Contents?: true

Size: 307 Bytes

Versions: 6

Compression:

Stored size: 307 Bytes

Contents

module Byebug
  #
  # Setting to customize the verbosity level for stack frames.
  #
  class CallstyleSetting < Setting
    DEFAULT = 'long'

    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

6 entries across 6 versions & 1 rubygems

Version Path
byebug-3.5.1 lib/byebug/settings/callstyle.rb
byebug-3.5.0 lib/byebug/settings/callstyle.rb
byebug-3.4.2 lib/byebug/settings/callstyle.rb
byebug-3.4.1 lib/byebug/settings/callstyle.rb
byebug-3.4.0 lib/byebug/settings/callstyle.rb
byebug-3.3.0 lib/byebug/settings/callstyle.rb