mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-09 12:46:07 +10:00
11 lines
316 B
Ruby
11 lines
316 B
Ruby
if Rails.env.development?
|
|
require 'rack-mini-profiler'
|
|
|
|
# initialization is skipped so trigger it
|
|
Rack::MiniProfilerRails.initialize!(Gitlab::Application)
|
|
|
|
Rack::MiniProfiler.config.position = 'right'
|
|
Rack::MiniProfiler.config.start_hidden = false
|
|
Rack::MiniProfiler.config.skip_paths << '/teaspoon'
|
|
end
|