Class: IHub::Configuration

Inherits:
Common::Client::Configuration::REST show all
Defined in:
lib/ihub/configuration.rb

Direct Known Subclasses

Appointments::Configuration

Instance Attribute Summary

Attributes inherited from Common::Client::Configuration::Base

#base_request_headers, #open_timeout, #read_timeout, #request_types, #user_agent

Instance Method Summary collapse

Methods inherited from Common::Client::Configuration::Base

#base_path, #breakers_error_threshold, #breakers_exception_handler, #breakers_matcher, #breakers_service, #create_new_breakers_service, #request_options, #service_exception, #service_name

Instance Method Details

#connectionObject



7
8
9
10
11
12
13
14
15
16
17
# File 'lib/ihub/configuration.rb', line 7

def connection
  @conn ||= Faraday.new(base_path, headers: base_request_headers, request: request_options) do |faraday|
    faraday.use      :breakers
    faraday.use      Faraday::Response::RaiseError

    faraday.response :betamocks if mock_enabled?
    faraday.response :snakecase, symbolize: false
    faraday.response :json, content_type: /\bjson/ # ensures only json content types parsed
    faraday.adapter Faraday.default_adapter
  end
end

#mock_enabled?Boolean

Returns:

  • (Boolean)


19
20
21
# File 'lib/ihub/configuration.rb', line 19

def mock_enabled?
  false
end