module RenRen::Config

Public Class Methods

access_token() click to toggle source
# File lib/ren_ren/config.rb, line 24
def self.access_token
  @@access_token
end
access_token=(val) click to toggle source
# File lib/ren_ren/config.rb, line 20
def self.access_token=(val)
  @@access_token = val
end
api_key() click to toggle source
# File lib/ren_ren/config.rb, line 8
def self.api_key
  @@api_key
end
api_key=(val) click to toggle source
# File lib/ren_ren/config.rb, line 4
def self.api_key=(val)
  @@api_key = val
end
api_secret() click to toggle source
# File lib/ren_ren/config.rb, line 16
def self.api_secret
  @@api_secret
end
api_secret=(val) click to toggle source
# File lib/ren_ren/config.rb, line 12
def self.api_secret=(val)
  @@api_secret = val
end