Sha256: 21123b6ecb3eb21f2d01d491acb2c3b835bde4e2521a3ac7db7df509837dd489

Contents?: true

Size: 1.11 KB

Versions: 6

Compression:

Stored size: 1.11 KB

Contents

# encoding: utf-8
# This file is distributed under New Relic's license terms.
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.

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

6 entries across 6 versions & 1 rubygems

Version Path
newrelic_rpm-8.2.0 lib/new_relic/agent/instrumentation/rake.rb
newrelic_rpm-8.1.0 lib/new_relic/agent/instrumentation/rake.rb
newrelic_rpm-8.0.0 lib/new_relic/agent/instrumentation/rake.rb
newrelic_rpm-7.2.0 lib/new_relic/agent/instrumentation/rake.rb
newrelic_rpm-7.1.0 lib/new_relic/agent/instrumentation/rake.rb
newrelic_rpm-7.0.0 lib/new_relic/agent/instrumentation/rake.rb