Sha256: 9a2c825b93317947f4da148a83e77abb4fda6ffd4813aaacd1422640a081c85a

Contents?: true

Size: 988 Bytes

Versions: 4

Compression:

Stored size: 988 Bytes

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

# == New Relic Initialization
#
# When installed as a gem, you can activate the New Relic agent one of the following ways:
#
# For applications using Bundler, add this to the Gemfile:
#    gem 'newrelic_rpm'
#
# You will also need to install the newrelic.yml configuration file
#
# For applications not using Bundler, and for other installation information, visit:
# https://docs.newrelic.com/docs/agents/ruby-agent/installation/install-new-relic-ruby-agent/
#

require 'new_relic/control'

if defined?(Rails::VERSION)
  module NewRelic
    class Railtie < Rails::Railtie
      initializer "newrelic_rpm.start_plugin", before: :load_config_initializers do |app|
        NewRelic::Control.instance.init_plugin(config: app.config)
      end
    end
  end
else
  NewRelic::Control.instance.init_plugin
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
newrelic_rpm-8.13.1 lib/newrelic_rpm.rb
newrelic_rpm-8.13.0 lib/newrelic_rpm.rb
newrelic_rpm-8.12.0 lib/newrelic_rpm.rb
newrelic_rpm-8.11.0 lib/newrelic_rpm.rb