Sha256: 74fd9723b6e012468831559817472f884fb9566c598137b8d4b2458704ae30ca
Contents?: true
Size: 1.11 KB
Versions: 2
Compression:
Stored size: 1.11 KB
Contents
require 'faraday' require 'open311/version' module Open311 module Configuration VALID_OPTIONS_KEYS = [ :adapter, :api_key, :endpoint, :format, :jurisdiction, :proxy, :user_agent].freeze VALID_FORMATS = [ :json, :xml].freeze DEFAULT_ADAPTER = Faraday.default_adapter DEFAULT_API_KEY = nil DEFAULT_ENDPOINT = nil DEFAULT_FORMAT = :xml DEFAULT_JURISDICTION = nil DEFAULT_PROXY = nil DEFAULT_USER_AGENT = "Open311 Ruby Gem #{Open311::Version}".freeze attr_accessor(*VALID_OPTIONS_KEYS) def self.extended(base) base.reset end def configure yield self end def options VALID_OPTIONS_KEYS.inject({}) { |a, e| a.merge!(e => send(e)) } end def reset self.adapter = DEFAULT_ADAPTER self.api_key = DEFAULT_API_KEY self.endpoint = DEFAULT_ENDPOINT self.format = DEFAULT_FORMAT self.jurisdiction = DEFAULT_JURISDICTION self.proxy = DEFAULT_PROXY self.user_agent = DEFAULT_USER_AGENT end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
open311-0.3.1 | lib/open311/configuration.rb |
open311-0.3.0 | lib/open311/configuration.rb |