Sha256: 2291006b6b1853c6b9a7f0e67cad719c639512cfa2ea8d9f88beabd24f821bee
Contents?: true
Size: 909 Bytes
Versions: 2
Compression:
Stored size: 909 Bytes
Contents
module Taric class Configuration attr_accessor :api_key, :format, :user_agent, :connection_opts, :adapter, :region, :requestor, :response_handler DEFAULT_REQUESTOR = -> connection, url { connection.get url }.curry DEFAULT_RESPONSE_HANDLER = -> response { response.body } def initialize(options = {}) @api_key = options.fetch(:api_key, ENV.fetch('RIOT_API_KEY'.freeze, nil)) @format = options.fetch(:format, :json) @user_agent = options.fetch(:user_agent, 'Taric Gem') @adapter = options.fetch(:adapter, Faraday.default_adapter) @region = options.fetch(:region, ENV.fetch('RIOT_API_REGION'.freeze, 'na').to_sym) @connection_opts = options.fetch(:connection_opts, {}) @requestor = options.fetch(:requestor, DEFAULT_REQUESTOR) @response_handler = options.fetch(:response_handler, DEFAULT_RESPONSE_HANDLER) end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
taric-0.1.14 | lib/taric/configuration.rb |
taric-0.1.12 | lib/taric/configuration.rb |