Sha256: 0e0b8fcfcb012e1f1278b63948676afae0624efc241c330de94df1a007a3a860
Contents?: true
Size: 555 Bytes
Versions: 38
Compression:
Stored size: 555 Bytes
Contents
#!/usr/bin/env ruby # encoding: utf-8 # This file is distributed under New Relic's license terms. # See https://github.com/newrelic/rpm/blob/master/LICENSE for complete details. ENV["NEW_RELIC_LOG_FILE_PATH"] = "STDOUT" require 'newrelic_rpm' # Force all named items to re-enable enable_everyone = {} DependencyDetection.items.each do |item| if item.name enable_everyone["disable_#{item.name}".to_sym] = false end end NewRelic::Agent.config.add_config_for_testing(enable_everyone) # Run dependency detection again! DependencyDetection.detect!
Version data entries
38 entries across 38 versions & 2 rubygems