rack-mini-profilerについて
railsを起動したときに画面の左上にmsという表示がされることがあるのですが、これは
rack-mini-profiler
というgemがインストールされているから表示されているということがわかりました。
このmsというのはサーバー側の処理の合計時間を示していて、クリックするとその内訳を見ることができます。サーバー側だけではなく、クライアント側の計測やsqlの処理なども確認することができます。
さて、これがあるとアプリのデザインがわかりにくいので非表示にしたいと思います。
Gemfile
group :development do
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem 'web-console', '>= 4.1.0'
# Display performance information such as SQL time and flame graphs for each request in your browser.
# Can be configured to work on production as well see: https://github.com/MiniProfiler/rack-mini-profiler/blob/master/README.md
gem 'rack-mini-profiler', '~> 2.0' ← これをコメントアウトします
gem 'listen', '~> 3.3'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
end
gem 'rack-mini-profiler', '~> 2.0'
をコメントアウトしましょう。
あとはbundle install
をすればmsを非表示にできます。