Class: Byebug::Setting

Inherits:
Object
  • Object
show all
Defined in:
lib/byebug/setting.rb

Overview

Parent class for all byebug settings.

Constant Summary collapse

DEFAULT =
false

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeSetting

Returns a new instance of Setting.



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

def initialize
  @value = self.class::DEFAULT
end

Instance Attribute Details

#valueObject

Returns the value of attribute value.



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

def value
  @value
end

Class Method Details

.[](name) ⇒ Object



44
45
46
# File 'lib/byebug/setting.rb', line 44

def [](name)
  settings[name].value
end

.[]=(name, value) ⇒ Object



48
49
50
# File 'lib/byebug/setting.rb', line 48

def []=(name, value)
  settings[name].value = value
end

.find(shortcut) ⇒ Object



52
53
54
55
56
57
58
# File 'lib/byebug/setting.rb', line 52

def find(shortcut)
  abbr = shortcut =~ /^no/ ? shortcut[2..-1] : shortcut
  matches = settings.select do |key, value|
    key =~ (value.boolean? ? /#{abbr}/ : /#{shortcut}/)
  end
  matches.size == 1 ? matches.values.first : nil
end

.help_allObject

TODO:

DRY this up. Very similar code exists in the CommandList class



63
64
65
66
67
68
69
70
# File 'lib/byebug/setting.rb', line 63

def help_all
  output = "  List of supported settings:\n\n"
  width = settings.keys.max_by(&:size).size
  settings.values.each do |sett|
    output << format("  %-#{width}s -- %s\n", sett.to_sym, sett.banner)
  end
  output + "\n"
end

.settingsObject



40
41
42
# File 'lib/byebug/setting.rb', line 40

def settings
  @settings ||= {}
end

Instance Method Details

#boolean?Boolean

Returns:

  • (Boolean)


16
17
18
# File 'lib/byebug/setting.rb', line 16

def boolean?
  [true, false].include?(value)
end

#helpObject



26
27
28
# File 'lib/byebug/setting.rb', line 26

def help
  prettify(banner)
end

#integer?Boolean

Returns:

  • (Boolean)


20
21
22
23
24
# File 'lib/byebug/setting.rb', line 20

def integer?
  Integer(value) ? true : false
rescue ArgumentError
  false
end

#to_sObject



35
36
37
# File 'lib/byebug/setting.rb', line 35

def to_s
  "#{to_sym} is #{value ? 'on' : 'off'}\n"
end

#to_symObject



30
31
32
33
# File 'lib/byebug/setting.rb', line 30

def to_sym
  name = self.class.name.gsub(/^Byebug::/, '').gsub(/Setting$/, '')
  name.gsub(/(.)([A-Z])/, '\1_\2').downcase.to_sym
end