From ab818b248e1d502d064ad071bc475ce8854c43c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9my=20Coutable?= Date: Mon, 12 Sep 2016 15:21:58 +0200 Subject: Use haml_lint for views linting MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Rémy Coutable --- Gemfile | 1 + 1 file changed, 1 insertion(+) (limited to 'Gemfile') diff --git a/Gemfile b/Gemfile index 81b7002027a..df546849fad 100644 --- a/Gemfile +++ b/Gemfile @@ -298,6 +298,7 @@ group :development, :test do gem 'rubocop', '~> 0.41.2', require: false gem 'rubocop-rspec', '~> 1.5.0', require: false gem 'scss_lint', '~> 0.47.0', require: false + gem 'haml_lint', '~> 0.18.2', require: false gem 'simplecov', '0.12.0', require: false gem 'flog', '~> 4.3.2', require: false gem 'flay', '~> 2.6.1', require: false -- cgit v1.2.1 From d8b7bb981294995166dd27e8fbd5a8dd1e8a8858 Mon Sep 17 00:00:00 2001 From: Katarzyna Kobierska Date: Tue, 13 Sep 2016 13:09:04 +0200 Subject: Update omniauth-facebook to '~>4.0.0' --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Gemfile') diff --git a/Gemfile b/Gemfile index 81b7002027a..1bfac82ffc6 100644 --- a/Gemfile +++ b/Gemfile @@ -26,7 +26,7 @@ gem 'omniauth-auth0', '~> 1.4.1' gem 'omniauth-azure-oauth2', '~> 0.0.6' gem 'omniauth-bitbucket', '~> 0.0.2' gem 'omniauth-cas3', '~> 1.1.2' -gem 'omniauth-facebook', '~> 3.0.0' +gem 'omniauth-facebook', '~> 4.0.0' gem 'omniauth-github', '~> 1.1.1' gem 'omniauth-gitlab', '~> 1.0.0' gem 'omniauth-google-oauth2', '~> 0.4.1' -- cgit v1.2.1 From 9980f52cb4ee32fbf1b132d605add5678e5ec067 Mon Sep 17 00:00:00 2001 From: Yorick Peterse Date: Fri, 9 Sep 2016 15:19:48 +0200 Subject: Update gitlab_git to 10.6.6 --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Gemfile') diff --git a/Gemfile b/Gemfile index 81b7002027a..481e94ae569 100644 --- a/Gemfile +++ b/Gemfile @@ -53,7 +53,7 @@ gem 'browser', '~> 2.2' # Extracting information from a git repository # Provide access to Gitlab::Git library -gem 'gitlab_git', '~> 10.6.3' +gem 'gitlab_git', '~> 10.6.6' # LDAP Auth # GitLab fork with several improvements to original library. For full list of changes -- cgit v1.2.1 From c1a990082f9f2e0c612deb6fd481021f72065cae Mon Sep 17 00:00:00 2001 From: Robert Speicher Date: Wed, 14 Sep 2016 15:49:32 -0400 Subject: Bump rubocop to 0.42.0 --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Gemfile') diff --git a/Gemfile b/Gemfile index 620338e5997..bc6ee6eb1e7 100644 --- a/Gemfile +++ b/Gemfile @@ -295,7 +295,7 @@ group :development, :test do gem 'spring-commands-spinach', '~> 1.1.0' gem 'spring-commands-teaspoon', '~> 0.0.2' - gem 'rubocop', '~> 0.41.2', require: false + gem 'rubocop', '~> 0.42.0', require: false gem 'rubocop-rspec', '~> 1.5.0', require: false gem 'scss_lint', '~> 0.47.0', require: false gem 'simplecov', '0.12.0', require: false -- cgit v1.2.1 From dfc7f50ce5569bacdb4167e39b1c37fc02430313 Mon Sep 17 00:00:00 2001 From: Robert Speicher Date: Wed, 14 Sep 2016 17:26:04 -0400 Subject: Bump rubocop-rspec to 1.7.0 --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Gemfile') diff --git a/Gemfile b/Gemfile index 70d8495325f..1f83f8c83f2 100644 --- a/Gemfile +++ b/Gemfile @@ -296,7 +296,7 @@ group :development, :test do gem 'spring-commands-teaspoon', '~> 0.0.2' gem 'rubocop', '~> 0.42.0', require: false - gem 'rubocop-rspec', '~> 1.5.0', require: false + gem 'rubocop-rspec', '~> 1.7.0', require: false gem 'scss_lint', '~> 0.47.0', require: false gem 'haml_lint', '~> 0.18.2', require: false gem 'simplecov', '0.12.0', require: false -- cgit v1.2.1 From f8cc5483af89550879fc3c800c2523ad8259130b Mon Sep 17 00:00:00 2001 From: Ahmad Sherif Date: Fri, 16 Sep 2016 19:55:00 +0200 Subject: 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. --- Gemfile | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Gemfile') 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' -- cgit v1.2.1