module Garufa::Config
Public Instance Methods
[](key)
click to toggle source
# File lib/garufa/config.rb, line 5 def [](key) settings[key] end
[]=(key, value)
click to toggle source
# File lib/garufa/config.rb, line 9 def []=(key, value) settings[key] = value end
settings()
click to toggle source
# File lib/garufa/config.rb, line 13 def settings @settings ||= {} end