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 /config/environments | |
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 'config/environments')
-rw-r--r-- | config/environments/development.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/environments/development.rb b/config/environments/development.rb index d7d6aed1602..827a110c249 100644 --- a/config/environments/development.rb +++ b/config/environments/development.rb @@ -24,7 +24,7 @@ Gitlab::Application.configure do # Expands the lines which load the assets # config.assets.debug = true - + # Adds additional error checking when serving assets at runtime. # Checks for improperly declared sprockets dependencies. # Raises helpful error messages. |