module Elmas

This whole class is going to be replaced due to Exact Online's new policies. support.exactonline.com/community/s/knowledge-base#All-All-HNO-Concept-general-security-gen-auth-totpc

Public Class Methods

client(options = {}) click to toggle source
# File lib/elmas.rb, line 57
def self.client(options = {})
  Elmas::Client.new(options)
end
error(msg) click to toggle source
# File lib/elmas.rb, line 76
def self.error(msg)
  logger.error(msg)
end
info(msg) click to toggle source
# File lib/elmas.rb, line 72
def self.info(msg)
  logger.info(msg)
end
method_missing(method, *args, &block) click to toggle source

Delegate to Elmas::Client

Calls superclass method
# File lib/elmas.rb, line 62
def self.method_missing(method, *args, &block)
  super unless client.respond_to?(method)
  client.send(method, *args, &block)
end
respond_to?(method, include_all = false) click to toggle source

Delegate to Elmas::Client

Calls superclass method
# File lib/elmas.rb, line 68
def self.respond_to?(method, include_all = false)
  client.respond_to?(method, include_all) || super
end