Sha256: ede08c4549a39a58c9db69fddf80baa3e59dc3bc1a7d040b40b3c4212327d7b7
Contents?: true
Size: 735 Bytes
Versions: 74
Compression:
Stored size: 735 Bytes
Contents
# 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. require 'new_relic/agent/instrumentation/action_view_subscriber' DependencyDetection.defer do @name = :rails4_view depends_on do defined?(::Rails) && ::Rails::VERSION::MAJOR.to_i == 4 end depends_on do !NewRelic::Agent.config[:disable_view_instrumentation] && !NewRelic::Agent::Instrumentation::ActionViewSubscriber.subscribed? end executes do ::NewRelic::Agent.logger.info 'Installing Rails 4 view instrumentation' end executes do NewRelic::Agent::Instrumentation::ActionViewSubscriber.subscribe(/render_.+\.action_view$/) end end
Version data entries
74 entries across 74 versions & 2 rubygems