Class: Tfrb::Config

Inherits:
Object
  • Object
show all
Defined in:
lib/tfrb/config.rb

Constant Summary collapse

@@config =
{}

Class Method Summary collapse

Class Method Details

.[](key) ⇒ Object



6
7
8
# File 'lib/tfrb/config.rb', line 6

def [](key)
  @@config[key]
end

.[]=(key, value) ⇒ Object



10
11
12
# File 'lib/tfrb/config.rb', line 10

def []=(key, value)
  @@config[key] = value
end