class Geocoder::Lookup::Base

def use_ssl?

def use_ssl?
  if supported_protocols == [:https]
    true
  elsif supported_protocols == [:http]
    false
  else
    configuration.use_https
  end
end