Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlya Zhitomirskiy <iz268@nyu.edu>2011-09-29 05:34:56 +0400
committerIlya Zhitomirskiy <iz268@nyu.edu>2011-09-29 05:34:56 +0400
commit1da0bf5d95f1742b2d43816d61cf8e4a4b5e466b (patch)
treeb27d51452878aa74682b45ca474028a3d279e53f /config/application.rb
parent95c8986b8ef5fd63cffba499fc419d43f537962e (diff)
changed the load order for newrelic
Diffstat (limited to 'config/application.rb')
-rw-r--r--config/application.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/application.rb b/config/application.rb
index 88b99e816..77c78e940 100644
--- a/config/application.rb
+++ b/config/application.rb
@@ -18,8 +18,8 @@ require 'rails/all'
Bundler.require(:default, Rails.env) if defined?(Bundler)
# use newrelic if configured via config/newrelic.yml
-require 'newrelic_rpm' if File.exists?(File.expand_path('../newrelic.yml', __FILE__))
require 'rpm_contrib' if File.exists?(File.expand_path('../newrelic.yml', __FILE__))
+require 'newrelic_rpm' if File.exists?(File.expand_path('../newrelic.yml', __FILE__))
module Diaspora
class Application < Rails::Application