diff options
author | Ahmad Sherif <me@ahmadsherif.com> | 2016-09-16 19:55:00 +0200 |
---|---|---|
committer | Ahmad Sherif <me@ahmadsherif.com> | 2016-09-16 20:07:03 +0200 |
commit | f8cc5483af89550879fc3c800c2523ad8259130b (patch) | |
tree | 38b7146f5c12090202a0b562dbddf8538ad1ab21 /Gemfile | |
parent | 6f0358107dda89aea1de3c5ce83012d56797c32e (diff) | |
download | gitlab-ce-f8cc5483af89550879fc3c800c2523ad8259130b.tar.gz |
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-- | Gemfile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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' |