class TorgApi::Settings

Attributes

service_user[R]
torg_url[R]

Public Class Methods

service_user_configure(opts = {}) click to toggle source

Configure through hash

# File lib/torg_api/settings.rb, line 7
def self.service_user_configure(opts = {})
  opts.each { |k, v| @service_user[k.to_sym] = v }
end
torg_url_configure(opts = {}) click to toggle source
# File lib/torg_api/settings.rb, line 11
def self.torg_url_configure(opts = {})
  opts.each { |k,v| @torg_url[k.to_sym] = v }
end