class Zype::Configuration
Attributes
analytics_host[RW]
api_key[RW]
app_key[RW]
host[RW]
login_host[RW]
player_host[RW]
Public Class Methods
new()
click to toggle source
# File lib/zype/configuration.rb, line 5 def initialize @api_key = nil @app_key = nil @host = 'https://api.zype.com' @player_host = 'https://player.zype.com' @login_host = 'https://login.zype.com' @analytics_host = 'https://analytics.zype.com/v2' end