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:
authorAhmad Sherif <me@ahmadsherif.com>2016-09-16 20:55:00 +0300
committerAhmad Sherif <me@ahmadsherif.com>2016-09-16 21:07:03 +0300
commitf8cc5483af89550879fc3c800c2523ad8259130b (patch)
tree38b7146f5c12090202a0b562dbddf8538ad1ab21 /Gemfile
parent6f0358107dda89aea1de3c5ce83012d56797c32e (diff)
Use oj gem for faster JSON processing
It's mainly intended to improve Elasticsearch indexing performance (through multi_json gem), but other gems could benefit from it too, like grape.
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Gemfile b/Gemfile
index 1f83f8c83f2..cb1c619cc64 100644
--- a/Gemfile
+++ b/Gemfile
@@ -206,6 +206,9 @@ gem 'mousetrap-rails', '~> 1.4.6'
# Detect and convert string character encoding
gem 'charlock_holmes', '~> 0.7.3'
+# Faster JSON
+gem 'oj', '~> 2.17.4'
+
# Parse time & duration
gem 'chronic', '~> 0.10.2'
gem 'chronic_duration', '~> 0.10.6'