Sha256: 07f96679c25e423d9621ca20a7f65d4c7234120b17edebf397ebeed8850929c1
Contents?: true
Size: 1.1 KB
Versions: 1
Compression:
Stored size: 1.1 KB
Contents
# This file is distributed under New Relic's license terms. # See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details. # frozen_string_literal: true require_relative 'rake/instrumentation' require_relative 'rake/chain' require_relative 'rake/prepend' DependencyDetection.defer do # Why not :rake? newrelic-rake used that name, so avoid conflicting @name = :rake_instrumentation configure_with :rake depends_on { defined?(Rake) && defined?(Rake::VERSION) } depends_on { Gem::Version.new(Rake::VERSION) >= Gem::Version.new("10.0.0") } depends_on { NewRelic::Agent.config[:'rake.tasks'].any? } depends_on { NewRelic::Agent::Instrumentation::Rake.safe_from_third_party_gem? } executes do NewRelic::Agent.logger.info("Installing Rake instrumentation") NewRelic::Agent.logger.debug("Instrumenting Rake tasks: #{NewRelic::Agent.config[:'rake.tasks']}") end executes do if use_prepend? prepend_instrument Rake::Task, NewRelic::Agent::Instrumentation::Rake::Prepend else chain_instrument NewRelic::Agent::Instrumentation::Rake::Chain end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
newrelic_rpm-9.0.0 | lib/new_relic/agent/instrumentation/rake.rb |