Enable newrelic for only production and staging

This commit is contained in:
Jesse C. Fisher 2016-02-02 18:13:38 -08:00
parent 7119c6a80b
commit f852dc3a17

View File

@ -21,7 +21,6 @@ gem 'upmin-admin'
gem 'dotenv-rails'
gem 'react-rails'
gem 'react-rails-hot-loader'
gem 'newrelic_rpm'
group :development do
gem 'better_errors'
gem 'rubocop', require: false
@ -65,3 +64,6 @@ group :test, :staging do
gem 'launchy'
gem 'selenium-webdriver'
end
group :production, :staging do
gem 'newrelic_rpm'
end