From 509b62c36089ab0f43771a10536fc87a913cbe45 Mon Sep 17 00:00:00 2001 From: Benjamin Neff Date: Thu, 18 Jan 2018 04:19:59 +0100 Subject: [PATCH] Bump dependency gems and update gemfiles --- Gemfile.lock | 10 ++-- test/gemfiles/no-rails.Gemfile | 6 ++- test/gemfiles/no-rails.Gemfile.lock | 43 ++++++++--------- test/gemfiles/rails4.Gemfile | 8 ++-- test/gemfiles/rails4.Gemfile.lock | 71 +++++++++++++++-------------- 5 files changed, 74 insertions(+), 64 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 6790cfe..5785d35 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -50,7 +50,7 @@ GEM diff-lcs (1.3) docile (1.1.5) erubi (1.7.0) - ethon (0.10.1) + ethon (0.11.0) ffi (>= 1.3.0) fabrication (2.19.0) faraday (0.13.1) @@ -62,13 +62,13 @@ GEM fuubar (2.3.1) rspec-core (~> 3.0) ruby-progressbar (~> 1.4) - gitlab (4.2.0) + gitlab (4.3.0) httparty terminal-table - guard (2.14.1) + guard (2.14.2) formatador (>= 0.2.4) listen (>= 2.7, < 4.0) - lumberjack (~> 1.0) + lumberjack (>= 1.0.12, < 2.0) nenv (~> 0.1) notiffany (~> 0.0) pry (>= 0.9.12) @@ -116,7 +116,7 @@ GEM shellany (~> 0.0) nyan-cat-formatter (0.12.0) rspec (>= 2.99, >= 2.14.2, < 4) - octokit (4.7.0) + octokit (4.8.0) sawyer (~> 0.8.0, >= 0.5.3) parallel (1.12.1) parser (2.4.0.2) diff --git a/test/gemfiles/no-rails.Gemfile b/test/gemfiles/no-rails.Gemfile index bd71623..6d31b40 100644 --- a/test/gemfiles/no-rails.Gemfile +++ b/test/gemfiles/no-rails.Gemfile @@ -17,7 +17,7 @@ end group :test do # rspec formatter - gem "fuubar", "2.2.0", require: false + gem "fuubar", "2.3.1", require: false gem "nyan-cat-formatter", require: false # test coverage @@ -35,5 +35,7 @@ group :development, :test do gem "rake" # unit tests - gem "rspec", "~> 3.6.0" + gem "rspec", "~> 3.7.0" end + + gem "fabrication", "< 2.17.0" diff --git a/test/gemfiles/no-rails.Gemfile.lock b/test/gemfiles/no-rails.Gemfile.lock index ab5c13a..960fd2e 100644 --- a/test/gemfiles/no-rails.Gemfile.lock +++ b/test/gemfiles/no-rails.Gemfile.lock @@ -22,7 +22,7 @@ GEM safe_yaml (~> 1.0.0) diff-lcs (1.3) docile (1.1.5) - ethon (0.10.1) + ethon (0.11.0) ffi (>= 1.3.0) fabrication (2.16.3) faraday (0.13.1) @@ -30,10 +30,10 @@ GEM faraday_middleware (0.12.2) faraday (>= 0.7.4, < 1.0) ffi (1.9.18) - fuubar (2.2.0) + fuubar (2.3.1) rspec-core (~> 3.0) ruby-progressbar (~> 1.4) - hashdiff (0.3.6) + hashdiff (0.3.7) json (2.1.0) json-schema (2.8.0) addressable (>= 2.4) @@ -48,25 +48,25 @@ GEM mini_portile2 (~> 2.3.0) nyan-cat-formatter (0.12.0) rspec (>= 2.99, >= 2.14.2, < 4) - public_suffix (3.0.0) - rake (12.1.0) - rspec (3.6.0) - rspec-core (~> 3.6.0) - rspec-expectations (~> 3.6.0) - rspec-mocks (~> 3.6.0) + public_suffix (3.0.1) + rake (12.3.0) + rspec (3.7.0) + rspec-core (~> 3.7.0) + rspec-expectations (~> 3.7.0) + rspec-mocks (~> 3.7.0) rspec-collection_matchers (1.1.3) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.6.0) - rspec-support (~> 3.6.0) - rspec-expectations (3.6.0) + rspec-core (3.7.1) + rspec-support (~> 3.7.0) + rspec-expectations (3.7.0) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.6.0) + rspec-support (~> 3.7.0) rspec-json_expectations (2.1.0) - rspec-mocks (3.6.0) + rspec-mocks (3.7.0) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.6.0) - rspec-support (3.6.0) - ruby-progressbar (1.8.3) + rspec-support (~> 3.7.0) + rspec-support (3.7.0) + ruby-progressbar (1.9.0) safe_yaml (1.0.4) simplecov (0.15.1) docile (~> 1.1.0) @@ -81,7 +81,7 @@ GEM uuid (2.3.8) macaddr (~> 1.0) valid (1.2.0) - webmock (3.0.1) + webmock (3.2.1) addressable (>= 2.3.6) crack (>= 0.3.2) hashdiff @@ -93,11 +93,12 @@ DEPENDENCIES diaspora_federation! diaspora_federation-json_schema! diaspora_federation-test! - fuubar (= 2.2.0) + fabrication (< 2.17.0) + fuubar (= 2.3.1) json-schema-rspec (= 0.0.4) nyan-cat-formatter rake - rspec (~> 3.6.0) + rspec (~> 3.7.0) rspec-collection_matchers (~> 1.1.2) rspec-json_expectations (~> 2.1) simplecov (= 0.15.1) @@ -105,4 +106,4 @@ DEPENDENCIES webmock (~> 3.0) BUNDLED WITH - 1.15.4 + 1.16.1 diff --git a/test/gemfiles/rails4.Gemfile b/test/gemfiles/rails4.Gemfile index 1beb6e8..fd2e12a 100644 --- a/test/gemfiles/rails4.Gemfile +++ b/test/gemfiles/rails4.Gemfile @@ -17,7 +17,7 @@ end group :test do # rspec formatter - gem "fuubar", "2.2.0", require: false + gem "fuubar", "2.3.1", require: false gem "nyan-cat-formatter", require: false # test coverage @@ -35,8 +35,10 @@ group :development, :test do gem "rake" # unit tests - gem "rspec", "~> 3.6.0" - gem "rspec-rails", "~> 3.6.0" + gem "rspec", "~> 3.7.0" + gem "rspec-rails", "~> 3.7.0" end + gem "fabrication", "< 2.17.0" + gem "actionpack", "4.2.8" diff --git a/test/gemfiles/rails4.Gemfile.lock b/test/gemfiles/rails4.Gemfile.lock index 1dbc67c..18ab408 100644 --- a/test/gemfiles/rails4.Gemfile.lock +++ b/test/gemfiles/rails4.Gemfile.lock @@ -40,12 +40,14 @@ GEM addressable (2.5.2) public_suffix (>= 2.0.2, < 4.0) builder (3.2.3) + concurrent-ruby (1.0.5) crack (0.4.3) safe_yaml (~> 1.0.0) + crass (1.0.3) diff-lcs (1.3) docile (1.1.5) erubis (2.7.0) - ethon (0.10.1) + ethon (0.11.0) ffi (>= 1.3.0) fabrication (2.16.3) faraday (0.13.1) @@ -53,36 +55,38 @@ GEM faraday_middleware (0.12.2) faraday (>= 0.7.4, < 1.0) ffi (1.9.18) - fuubar (2.2.0) + fuubar (2.3.1) rspec-core (~> 3.0) ruby-progressbar (~> 1.4) - hashdiff (0.3.6) - i18n (0.8.6) + hashdiff (0.3.7) + i18n (0.9.1) + concurrent-ruby (~> 1.0) json (2.1.0) json-schema (2.8.0) addressable (>= 2.4) json-schema-rspec (0.0.4) json-schema (~> 2.5) rspec - loofah (2.0.3) + loofah (2.1.1) + crass (~> 1.0.2) nokogiri (>= 1.5.9) macaddr (1.7.1) systemu (~> 2.6.2) mini_portile2 (2.3.0) - minitest (5.10.3) + minitest (5.11.1) multipart-post (2.0.0) nokogiri (1.8.1) mini_portile2 (~> 2.3.0) nyan-cat-formatter (0.12.0) rspec (>= 2.99, >= 2.14.2, < 4) - public_suffix (3.0.0) + public_suffix (3.0.1) rack (1.6.8) rack-test (0.6.3) rack (>= 1.0) rails-deprecated_sanitizer (1.0.3) activesupport (>= 4.2.0.alpha) - rails-dom-testing (1.0.8) - activesupport (>= 4.2.0.beta, < 5.0) + rails-dom-testing (1.0.9) + activesupport (>= 4.2.0, < 5.0) nokogiri (~> 1.6) rails-deprecated_sanitizer (>= 1.0.1) rails-html-sanitizer (1.0.3) @@ -92,32 +96,32 @@ GEM activesupport (= 4.2.8) rake (>= 0.8.7) thor (>= 0.18.1, < 2.0) - rake (12.1.0) - rspec (3.6.0) - rspec-core (~> 3.6.0) - rspec-expectations (~> 3.6.0) - rspec-mocks (~> 3.6.0) + rake (12.3.0) + rspec (3.7.0) + rspec-core (~> 3.7.0) + rspec-expectations (~> 3.7.0) + rspec-mocks (~> 3.7.0) rspec-collection_matchers (1.1.3) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.6.0) - rspec-support (~> 3.6.0) - rspec-expectations (3.6.0) + rspec-core (3.7.1) + rspec-support (~> 3.7.0) + rspec-expectations (3.7.0) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.6.0) + rspec-support (~> 3.7.0) rspec-json_expectations (2.1.0) - rspec-mocks (3.6.0) + rspec-mocks (3.7.0) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.6.0) - rspec-rails (3.6.1) + rspec-support (~> 3.7.0) + rspec-rails (3.7.2) actionpack (>= 3.0) activesupport (>= 3.0) railties (>= 3.0) - rspec-core (~> 3.6.0) - rspec-expectations (~> 3.6.0) - rspec-mocks (~> 3.6.0) - rspec-support (~> 3.6.0) - rspec-support (3.6.0) - ruby-progressbar (1.8.3) + rspec-core (~> 3.7.0) + rspec-expectations (~> 3.7.0) + rspec-mocks (~> 3.7.0) + rspec-support (~> 3.7.0) + rspec-support (3.7.0) + ruby-progressbar (1.9.0) safe_yaml (1.0.4) simplecov (0.15.1) docile (~> 1.1.0) @@ -131,12 +135,12 @@ GEM thread_safe (0.3.6) typhoeus (1.3.0) ethon (>= 0.9.0) - tzinfo (1.2.3) + tzinfo (1.2.4) thread_safe (~> 0.1) uuid (2.3.8) macaddr (~> 1.0) valid (1.2.0) - webmock (3.0.1) + webmock (3.2.1) addressable (>= 2.3.6) crack (>= 0.3.2) hashdiff @@ -150,17 +154,18 @@ DEPENDENCIES diaspora_federation-json_schema! diaspora_federation-rails! diaspora_federation-test! - fuubar (= 2.2.0) + fabrication (< 2.17.0) + fuubar (= 2.3.1) json-schema-rspec (= 0.0.4) nyan-cat-formatter rake - rspec (~> 3.6.0) + rspec (~> 3.7.0) rspec-collection_matchers (~> 1.1.2) rspec-json_expectations (~> 2.1) - rspec-rails (~> 3.6.0) + rspec-rails (~> 3.7.0) simplecov (= 0.15.1) simplecov-rcov (= 0.2.3) webmock (~> 3.0) BUNDLED WITH - 1.15.4 + 1.16.1