module Battlenet::Configuration
Constants
- DEFAULT_API_KEY
- DEFAULT_ENDPOINT
- DEFAULT_LOCALE
- DEFAULT_REGION
- OPTIONS_KEYS
Public Instance Methods
configure() { |self| ... }
click to toggle source
# File lib/battlenet/api/configuration.rb, line 18 def configure yield self end
options()
click to toggle source
# File lib/battlenet/api/configuration.rb, line 22 def options OPTIONS_KEYS.inject({}) do |option, key| option.merge!(key => send(key)) end end