module KontoAPI::Config

Public Class Methods

api_key=(new_key) click to toggle source
# File lib/kontoapi-rails/config.rb, line 9
def api_key=(new_key)
  KontoAPI::api_key = new_key
end
disable_for() click to toggle source
# File lib/kontoapi-rails/config.rb, line 17
def disable_for
  @@disable_for
end
disable_for=(disable_for) click to toggle source
# File lib/kontoapi-rails/config.rb, line 21
def disable_for=(disable_for)
  @@disable_for = disable_for
end
timeout=(new_timeout) click to toggle source
# File lib/kontoapi-rails/config.rb, line 13
def timeout=(new_timeout)
  KontoAPI::timeout = new_timeout
end