module Rallio

Constants

VERSION

Public Class Methods

application_id() click to toggle source

Retreives application id token.

@return [String, nil] the application id or nil

# File lib/rallio.rb, line 19
def self.application_id
  @application_id
end
application_id=(value) click to toggle source

Sets the oauth application id received from Rallio.

@param value [String] the oauth application id token @return [String] value

# File lib/rallio.rb, line 12
def self.application_id=(value)
  @application_id = value
end
application_secret() click to toggle source

Retreives application secret token.

@return [String, nil] the application secret or nil

# File lib/rallio.rb, line 34
def self.application_secret
  @application_secret
end
application_secret=(value) click to toggle source

Sets the oauth application secret received from Rallio.

@param value [String] the oauth application secret token @return [String] value

# File lib/rallio.rb, line 27
def self.application_secret=(value)
  @application_secret = value
end