lib/exvo_auth/config.rb in exvo-auth-0.1.3 vs lib/exvo_auth/config.rb in exvo-auth-0.1.4

- old
+ new

@@ -1,6 +1,17 @@ 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.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