class Geocoder::ConfigurationHash
Public Instance Methods
method_missing(meth, *args, &block)
click to toggle source
Calls superclass method
# File lib/geocoder/configuration_hash.rb, line 3 def method_missing(meth, *args, &block) has_key?(meth) ? self[meth] : super end
respond_to_missing?(meth, include_private = false)
click to toggle source
Calls superclass method
# File lib/geocoder/configuration_hash.rb, line 7 def respond_to_missing?(meth, include_private = false) has_key?(meth) || super end