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.8.0 lib/exvo_auth/config.rb
exvo-auth-0.7.16 lib/exvo_auth/config.rb
exvo-auth-0.7.15 lib/exvo_auth/config.rb
exvo-auth-0.7.14 lib/exvo_auth/config.rb
exvo-auth-0.7.13 lib/exvo_auth/config.rb
exvo-auth-0.7.12 lib/exvo_auth/config.rb
exvo-auth-0.7.11 lib/exvo_auth/config.rb
exvo-auth-0.7.10 lib/exvo_auth/config.rb
exvo-auth-0.7.9 lib/exvo_auth/config.rb
exvo-auth-0.7.8 lib/exvo_auth/config.rb
exvo-auth-0.7.7 lib/exvo_auth/config.rb
exvo-auth-0.7.6 lib/exvo_auth/config.rb
exvo-auth-0.7.5 lib/exvo_auth/config.rb
exvo-auth-0.7.4 lib/exvo_auth/config.rb
exvo-auth-0.7.3 lib/exvo_auth/config.rb
exvo-auth-0.7.2 lib/exvo_auth/config.rb
exvo-auth-0.7.1 lib/exvo_auth/config.rb
exvo-auth-0.7.0 lib/exvo_auth/config.rb
exvo-auth-0.6.2 lib/exvo_auth/config.rb
exvo-auth-0.6.1 lib/exvo_auth/config.rb