Remove memory profiler at least until I push a new docker image

This commit is contained in:
Sam 2014-02-10 15:40:32 +11:00
parent d3b8ec36d0
commit 212ece3e80
2 changed files with 0 additions and 6 deletions

View File

@ -196,11 +196,6 @@ gem 'lru_redux'
gem 'flamegraph', require: false
gem 'rack-mini-profiler', require: false
begin
gem 'memory_profiler', require: false, platform: :mri_21
rescue
puts "WARNING: you are running an old version of bundler, please run 'gem update bundler'"
end
# used for caching, optional
gem 'rack-cors', require: false

View File

@ -2,7 +2,6 @@
if Rails.configuration.respond_to?(:enable_mini_profiler) && Rails.configuration.enable_mini_profiler
require 'rack-mini-profiler'
require 'flamegraph'
require 'memory_profiler' if RUBY_VERSION >= "2.1.0"
# initialization is skipped so trigger it
Rack::MiniProfilerRails.initialize!(Rails.application)
end