Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYorick Peterse <yorickpeterse@gmail.com>2015-10-13 12:54:06 +0300
committerYorick Peterse <yorickpeterse@gmail.com>2015-10-15 13:05:01 +0300
commitfa3d7db39077611703edf7d328e33f0049f5d341 (patch)
tree2805cad97e52713d57e031e86415aa0793f11ae7 /Gemfile
parent39fcd445fa5a6af19ead78b47de84a199e7e7d50 (diff)
Added Bullet to the Gemfile
This can be used to resolve N+1 query problems. Bullet is disabled by default and can be enabled by starting Rails with the environment variable ENABLE_BULLET set to a non empty value (e.g. "true").
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Gemfile b/Gemfile
index 9b2416ab45f..d3c1fd50e3a 100644
--- a/Gemfile
+++ b/Gemfile
@@ -224,6 +224,7 @@ group :development do
gem 'quiet_assets', '~> 1.0.2'
gem 'rack-mini-profiler', '~> 0.9.0', require: false
gem 'rerun', '~> 0.10.0'
+ gem 'bullet', require: false
# Better errors handler
gem 'better_errors', '~> 1.0.1'