Sha256: 5b263485e7d5840e294db04f2e3e10280658bb487d915e8411d98f8007664b01

Contents?: true

Size: 1.54 KB

Versions: 21

Compression:

Stored size: 1.54 KB

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.

# == New Relic Initialization
#
# When installed as a gem, you can activate the New Relic agent one of the following ways:
#
# For Rails, add:
#    config.gem 'newrelic_rpm'
# to your initialization sequence.
#
# For merb, do
#    dependency 'newrelic_rpm'
# in the Merb config/init.rb
#
# For Sinatra, do
#    require 'newrelic_rpm'
# after requiring 'sinatra'.
#
# For other frameworks, or to manage the agent manually, invoke NewRelic::Agent#manual_start
# directly.
#

require 'new_relic/control'
if defined?(Merb) && defined?(Merb::BootLoader)
  module NewRelic
    class MerbBootLoader < Merb::BootLoader
      after Merb::BootLoader::ChooseAdapter
      def self.run
        NewRelic::Control.instance.init_plugin
      end
    end
  end
elsif defined?(Rails::VERSION)
  if Rails::VERSION::MAJOR.to_i >= 3
    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
    # After version 2.0 of Rails we can access the configuration directly.
    # We need it to add dev mode routes after initialization finished.
    config = nil
    config = Rails.configuration if Rails.respond_to?(:configuration)
    NewRelic::Control.instance.init_plugin :config => config
  end
else
  NewRelic::Control.instance.init_plugin
end

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
newrelic_rpm-6.11.0.365 lib/newrelic_rpm.rb
newrelic_rpm-6.10.0.364 lib/newrelic_rpm.rb
newrelic_rpm-6.9.0.363 lib/newrelic_rpm.rb
newrelic_rpm-6.8.0.360 lib/newrelic_rpm.rb
newrelic_rpm-6.7.0.359 lib/newrelic_rpm.rb
newrelic_rpm-6.6.0.358 lib/newrelic_rpm.rb
newrelic_rpm-6.5.0.357 lib/newrelic_rpm.rb
newrelic_rpm-6.4.0.356 lib/newrelic_rpm.rb
newrelic_rpm-6.3.0.355 lib/newrelic_rpm.rb
newrelic_rpm-6.2.0.354 lib/newrelic_rpm.rb
newrelic_rpm-6.1.0.352 lib/newrelic_rpm.rb
newrelic_rpm-6.0.0.351 lib/newrelic_rpm.rb
newrelic_rpm-5.7.0.350 lib/newrelic_rpm.rb
newrelic_rpm-5.6.0.349 lib/newrelic_rpm.rb
newrelic_rpm-5.5.0.348 lib/newrelic_rpm.rb
newrelic_rpm-5.4.0.347 lib/newrelic_rpm.rb
newrelic_rpm-5.3.0.346 lib/newrelic_rpm.rb
newrelic_rpm-5.2.0.345 lib/newrelic_rpm.rb
newrelic_rpm-5.1.0.344 lib/newrelic_rpm.rb
newrelic_rpm-5.0.0.342 lib/newrelic_rpm.rb