diff options
author | Yorick Peterse <yorickpeterse@gmail.com> | 2015-10-14 12:21:57 +0200 |
---|---|---|
committer | Yorick Peterse <yorickpeterse@gmail.com> | 2015-10-15 12:05:01 +0200 |
commit | d4832b0341643d90df8323a5564521d3bcd3abc1 (patch) | |
tree | c70346b8cb41c11191761755d4f230eefea0f5c1 /Gemfile | |
parent | 7971ed5daca4bfb1310d6458f323377391a99429 (diff) | |
download | gitlab-ce-d4832b0341643d90df8323a5564521d3bcd3abc1.tar.gz |
Added rack-lineprof for development
This can be used to measure the time (roughly) spent on a per line
basis. This can also be used to measure timings for views, for example
by adding the following to a URL:
?lineprof=app/views/projects/notes/_note
rack-lineprof is only enabled when:
1. The application runs in development mode
2. The used Ruby is MRI
3. The environment variable ENABLE_LINEPROF is set to a non-empty value
Diffstat (limited to 'Gemfile')
-rw-r--r-- | Gemfile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -226,6 +226,7 @@ group :development do gem 'rerun', '~> 0.10.0' gem 'bullet', require: false gem 'active_record_query_trace', require: false + gem 'rack-lineprof', platform: :mri # Better errors handler gem 'better_errors', '~> 1.0.1' |