Module: Datadog::Tracing::Contrib::RestClient::Patcher

Includes:
Patcher
Defined in:
lib/datadog/tracing/contrib/rest_client/patcher.rb

Overview

Patcher enables patching of ‘rest_client’ module.

Class Method Summary collapse

Methods included from Patcher

included

Class Method Details

.patchObject



19
20
21
22
23
# File 'lib/datadog/tracing/contrib/rest_client/patcher.rb', line 19

def patch
  require_relative 'request_patch'

  ::RestClient::Request.include(RequestPatch)
end

.target_versionObject



15
16
17
# File 'lib/datadog/tracing/contrib/rest_client/patcher.rb', line 15

def target_version
  Integration.version
end