Sha256: f60051bce16ce18be27e66e4d25386bacaccdf117da9ce28b589ed6f6e5e6e7b

Contents?: true

Size: 954 Bytes

Versions: 3

Compression:

Stored size: 954 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 {
      raise "#{response.status}" if response.status >= 400
      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

3 entries across 3 versions & 1 rubygems

Version Path
taric-0.1.11 lib/taric/configuration.rb
taric-0.1.10 lib/taric/configuration.rb
taric-0.1.9 lib/taric/configuration.rb