Class: Byebug::VerboseSetting

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

Overview

Setting to show verbose output about TracePoint API events.

Constant Summary

Constants inherited from Setting

Setting::DEFAULT

Instance Method Summary collapse

Methods inherited from Setting

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

Constructor Details

This class inherits a constructor from Byebug::Setting

Instance Method Details



6
7
8
# File 'lib/byebug/settings/verbose.rb', line 6

def banner
  'Enable verbose output of TracePoint API events'
end

#valueObject



14
15
16
# File 'lib/byebug/settings/verbose.rb', line 14

def value
  Byebug.verbose?
end

#value=(v) ⇒ Object



10
11
12
# File 'lib/byebug/settings/verbose.rb', line 10

def value=(v)
  Byebug.verbose = v
end