Sha256: fa41cde8e579c41683ae1c8bd317234803a59f73c43512cca7075196444e7cd7
Contents?: true
Size: 681 Bytes
Versions: 12
Compression:
Stored size: 681 Bytes
Contents
# typed: true require_relative '../patcher' require_relative 'ext' require_relative 'instrumentation' module Datadog module Tracing module Contrib module Rake # Patcher enables patching of 'rake' module. module Patcher include Contrib::Patcher module_function def target_version Integration.version end def patch # Add instrumentation patch to Rake task ::Rake::Task.include(Instrumentation) end def get_option(option) Datadog.configuration.tracing[:rake].get_option(option) end end end end end end
Version data entries
12 entries across 12 versions & 1 rubygems