Sha256: f0a0383d378cee262635627e39170a98a8e863e100c6df9d9415f0a2b5524a84

Contents?: true

Size: 895 Bytes

Versions: 2

Compression:

Stored size: 895 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, :typhoeus)
      @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.8 lib/taric/configuration.rb
taric-0.1.7 lib/taric/configuration.rb