class Geocoder::Configuration

def self.options_and_defaults

def self.options_and_defaults
  [
    # geocoding service timeout (secs)
    [:timeout, 3],
    # name of geocoding service (symbol)
    [:lookup, :google],
    # ISO-639 language code
    [:language, :en],
    # use HTTPS for lookup requests? (if supported)
    [:use_https, false],
    # API key for geocoding service
    [:api_key, nil],
    # cache object (must respond to #[], #[]=, and #keys)
    [:cache, nil],
    # prefix (string) to use for all cache keys
    [:cache_prefix, "geocoder:"]
  ]
end