Class: Etheruby::Configuration

Inherits:
Object
  • Object
show all
Defined in:
lib/etheruby/configuration.rb

Class Method Summary collapse

Class Method Details

.conf=(value) ⇒ Object



5
6
7
# File 'lib/etheruby/configuration.rb', line 5

def self.conf=(value)
  @@conf = value
end

.method_missing(sym, *arg) ⇒ Object



9
10
11
# File 'lib/etheruby/configuration.rb', line 9

def self.method_missing(sym, *arg)
  return @@conf[sym.to_s]
end