From d65639b556667ffd89615417e3bd0902fa4aadae Mon Sep 17 00:00:00 2001 From: Christian Weiske Date: Wed, 13 May 2026 14:57:17 +0200 Subject: [PATCH] Fix missing "typhoeus" dependency in Gemfile.lock > $bundle install > [...] > 4.211 Downloading typhoeus-1.4.1 revealed dependencies not in the API or the lockfile > 4.211 (ethon (>= 0.9.0)). > 4.211 Either installing with `--full-index` or running `bundle update typhoeus` should > 4.211 fix the problem. Solution taken from https://makandracards.com/makandra/51932-bundler-error-downloading-gem-revealed-dependencies Resolves: https://github.com/evolvingweb/sitediff/issues/207 --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index 37adfcf..8017d7a 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -68,7 +68,7 @@ GEM ruby-progressbar (1.11.0) thor (1.2.1) typhoeus (1.4.1) - ethon (= 0.16.0) + ethon (>= 0.9.0) unicode-display_width (2.2.0) webrick (1.9.1)