class Geocoder::ConfigurationHash
def method_missing(meth, *args, &block)
def method_missing(meth, *args, &block) has_key?(meth) ? self[meth] : super end
def respond_to_missing?(meth, include_private = false)
def respond_to_missing?(meth, include_private = false) has_key?(meth) || super end