lib/exvo_auth/config.rb in exvo-auth-0.1.6 vs lib/exvo_auth/config.rb in exvo-auth-0.1.7
- old
+ new
@@ -1,15 +1,15 @@
module ExvoAuth::Config
def self.host
- @@host || 'https://auth.exvo.com'
+ @@host ||= 'https://auth.exvo.com'
end
def self.host=(host)
@@host = host
end
def self.callback_key
- @@callback_key || '_callback'
+ @@callback_key ||= '_callback'
end
def self.callback_key=(callback_key)
@@callback_key = callback_key
end