Sha256: c0aea2feae1535256c63a453c6b85ed96df3a00be0ae3153d72380ff3193b945
Contents?: true
Size: 1.09 KB
Versions: 1
Compression:
Stored size: 1.09 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, :log_level def initialize(options={}) FinAppsCore::REST::Defaults::DEFAULTS.merge(remove_empty_options(options)) .each {|key, value| public_send("#{key}=", value) } raise FinAppsCore::InvalidArgumentsError.new "Invalid argument. {host: #{host}}" unless valid_host? raise FinAppsCore::InvalidArgumentsError.new "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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
finapps_core-2.1.1 | lib/finapps_core/rest/configuration.rb |