Sha256: a3ffe6d3a5c734239fbc2614cac11b1a759c1a371a08efa90bfe720faec33512

Contents?: true

Size: 550 Bytes

Versions: 28

Compression:

Stored size: 550 Bytes

Contents

module ExvoAuth::Config
  def self.host 
    @@host ||= 'https://auth.exvo.com' 
  end
  
  def self.host=(host) 
    @@host = host 
  end
  
  def self.callback_key
    @@callback_key ||= '_callback'
  end
  
  def self.callback_key=(callback_key)
    @@callback_key = callback_key 
  end
  
  def self.client_id=(client_id)
    @@client_id = client_id
  end
  
  def self.client_id
    @@client_id
  end
  
  def self.client_secret=(client_secret)
    @@client_secret = client_secret
  end
  
  def self.client_secret
    @@client_secret
  end
end

Version data entries

28 entries across 28 versions & 1 rubygems

Version Path
exvo-auth-0.6.0 lib/exvo_auth/config.rb
exvo-auth-0.5.2 lib/exvo_auth/config.rb
exvo-auth-0.5.1 lib/exvo_auth/config.rb
exvo-auth-0.5.0 lib/exvo_auth/config.rb
exvo-auth-0.4.3 lib/exvo_auth/config.rb
exvo-auth-0.4.2 lib/exvo_auth/config.rb
exvo-auth-0.4.1 lib/exvo_auth/config.rb
exvo-auth-0.4.0 lib/exvo_auth/config.rb