class RewardExpert::Configuration

Client initial confiruration class

Attributes

api_prefix[RW]
auth[RW]
host[RW]
log_response[RW]

Public Class Methods

new() click to toggle source
# File lib/reward_expert/configuration.rb, line 9
def initialize
  @api_prefix = 'api/v2'
  @host = 'https://static.rewardexpert.com'
  @log_response = false
  @auth = nil # Array for basic auth [name, password]
end