class Geocoder::Result::Maxmind

def method_missing(method, *args, &block)

def method_missing(method, *args, &block)
  if field_names.include?(method)
    data_hash[method]
  else
    super
  end
end