Sha256: 1a8e163ce5c7793a5e0edb84f776f0defaaa0c861625e4a4bc4096d4f95de2dd

Contents?: true

Size: 1.1 KB

Versions: 3

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
  named :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

3 entries across 3 versions & 1 rubygems

Version Path
newrelic_rpm-8.16.0 lib/new_relic/agent/instrumentation/rake.rb
newrelic_rpm-8.15.0 lib/new_relic/agent/instrumentation/rake.rb
newrelic_rpm-8.14.0 lib/new_relic/agent/instrumentation/rake.rb