class Adash::Config

Public Class Methods

client_id() click to toggle source
# File lib/adash/config.rb, line 10
def self.client_id
  @@client_id
end
client_secret() click to toggle source
# File lib/adash/config.rb, line 14
def self.client_secret
  @@client_secret
end
credentials_path() click to toggle source
# File lib/adash/config.rb, line 22
def self.credentials_path
  @@credentials_path
end
credentials_path=(new_path) click to toggle source
# File lib/adash/config.rb, line 26
def self.credentials_path=(new_path)
  @@credentials_path = new_path
end
redirect_port() click to toggle source
# File lib/adash/config.rb, line 18
def self.redirect_port
  @@redirect_port
end