Sha256: 557a152831bec2d0627b90fe814f0381dedecf70c7bd9a178ad82c1a67b127c0
Contents?: true
Size: 1.11 KB
Versions: 14
Compression:
Stored size: 1.11 KB
Contents
# frozen_string_literal: true module FinAppsCore module REST # Represents the client configuration options class Configuration # :nodoc: using ObjectExtensions attr_accessor :tenant_token, :user_identifier, :user_token, :host, :proxy, :timeout, :retry_limit, :rashify, :log_level, :request_id def initialize(options = {}) FinAppsCore::REST::Defaults::DEFAULTS.merge(remove_empty_options(options)) .each {|key, value| public_send("#{key}=", value) } raise FinAppsCore::InvalidArgumentsError, "Invalid argument. {host: #{host}}" unless valid_host? raise FinAppsCore::InvalidArgumentsError, "Invalid argument. {timeout: #{timeout}}" unless timeout.integer? end def valid_user_credentials? FinAppsCore::REST::Credentials.new(user_identifier, user_token).valid? end private def valid_host? host.start_with?('http://', 'https://') end def remove_empty_options(hash) hash.reject {|_, value| value.nil? } end end end end
Version data entries
14 entries across 14 versions & 1 rubygems