class EWayClient::Client

Private Instance Methods

default_logger() click to toggle source
# File lib/e_way_client/client.rb, line 27
def default_logger
  Logger.new(STDOUT)
end
default_opts() click to toggle source
# File lib/e_way_client/client.rb, line 21
def default_opts
  %i[wsdl username password secret log logger].each_with_object({}) do |attr, hash|
    hash[attr] = send(attr)
  end
end