summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbogdanvlviv <bogdanvlviv@gmail.com>2016-07-02 02:37:31 +0300
committerbogdanvlviv <bogdanvlviv@gmail.com>2016-07-04 22:51:19 +0300
commit59eeac2962f36f693a5496e25f9f007fa71c4301 (patch)
tree197aa8db50421c0f6fce1e91badf8c8638fb01cc
parent589a9caf0a53be6da39ecf1c635c005fa995f8ff (diff)
downloadgitlab-ce-59eeac2962f36f693a5496e25f9f007fa71c4301.tar.gz
change `require: nil` to `require: false`
require: nil and require: false get same result, but i think we shouldn't write it differently in other places.
-rw-r--r--Gemfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Gemfile b/Gemfile
index de7cee25c8c..4c422b7e026 100644
--- a/Gemfile
+++ b/Gemfile
@@ -137,7 +137,7 @@ gem 'after_commit_queue'
gem 'acts-as-taggable-on', '~> 3.4'
# Background jobs
-gem 'sinatra', '~> 1.4.4', require: nil
+gem 'sinatra', '~> 1.4.4', require: false
gem 'sidekiq', '~> 4.0'
gem 'sidekiq-cron', '~> 0.4.0'
gem 'redis-namespace'