Class: Byebug::CallstyleSetting

Inherits:
Setting
  • Object
show all
Defined in:
lib/byebug/settings/callstyle.rb

Overview

Setting to customize the verbosity level for stack frames.

Constant Summary collapse

DEFAULT =
'long'

Instance Attribute Summary

Attributes inherited from Setting

#value

Instance Method Summary collapse

Methods inherited from Setting

[], []=, boolean?, #boolean?, exists?, find, #help, help, help_all, #initialize, integer?, #integer?, load, settings, #to_sym

Constructor Details

This class inherits a constructor from Byebug::Setting

Instance Method Details



8
9
10
# File 'lib/byebug/settings/callstyle.rb', line 8

def banner
  'Set how you want method call parameters to be displayed'
end

#to_sObject



12
13
14
# File 'lib/byebug/settings/callstyle.rb', line 12

def to_s
  "Frame display callstyle is '#{value}'"
end