Sha256: 0e2a780a18953df70dd19c87078b1dd2a5e14ddc7a8972e19202ec8dacb884fa

Contents?: true

Size: 294 Bytes

Versions: 9

Compression:

Stored size: 294 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
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
exvo-auth-0.3.4 lib/exvo_auth/config.rb
exvo-auth-0.3.3 lib/exvo_auth/config.rb
exvo-auth-0.3.2 lib/exvo_auth/config.rb
exvo-auth-0.3.1 lib/exvo_auth/config.rb
exvo-auth-0.3.0 lib/exvo_auth/config.rb
exvo-auth-0.2.2 lib/exvo_auth/config.rb
exvo-auth-0.2.1 lib/exvo_auth/config.rb
exvo-auth-0.2.0 lib/exvo_auth/config.rb
exvo-auth-0.1.7 lib/exvo_auth/config.rb