class TeambitionApi::Configuration

Public Instance Methods

client_key() click to toggle source
# File lib/teambition_api/configuration.rb, line 19
def client_key
  @client_key ||= 'client_key'
end
client_key=(client_key) click to toggle source
# File lib/teambition_api/configuration.rb, line 23
def client_key=(client_key)
  @client_key = client_key
end
client_secret() click to toggle source
# File lib/teambition_api/configuration.rb, line 27
def client_secret
  @client_secret ||= 'client_secret'
end
client_secret=(client_secret) click to toggle source
# File lib/teambition_api/configuration.rb, line 31
def client_secret=(client_secret)
  @client_secret = client_secret
end
oauth_server() click to toggle source
# File lib/teambition_api/configuration.rb, line 3
def oauth_server
  @oauth_server ||= "https://account.teambition.com"
end
oauth_server=(oauth_server) click to toggle source
# File lib/teambition_api/configuration.rb, line 7
def oauth_server=(oauth_server)
  @oauth_server = oauth_server
end
server() click to toggle source
# File lib/teambition_api/configuration.rb, line 11
def server
  @server ||= "https://api.teambition.com"
end
server=(server) click to toggle source
# File lib/teambition_api/configuration.rb, line 15
def server=(server)
  @server = server
end