Method: Herdic.method_missing

Defined in:
lib/herdic.rb

.method_missing(method_name, *args, &block) ⇒ Object



48
49
50
51
52
53
54
# File 'lib/herdic.rb', line 48

def method_missing(method_name, *args, &block)
  if @config.respond_to? method_name
    @config.send method_name, *args, &block
  else
    super
  end
end