memory_profiler should be shipped with mini profiler

This commit is contained in:
Sam
2014-05-08 13:49:34 +10:00
parent fbda9cac69
commit 31c575687b
3 changed files with 4 additions and 0 deletions

View File

@@ -2,6 +2,7 @@
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