From 4c8c3a7682520844ad3d94ee0a2710752dd173a6 Mon Sep 17 00:00:00 2001 From: Alberto Vena Date: Wed, 12 Apr 2023 08:59:31 +0200 Subject: [PATCH] Add webrick as explicit dev dependency We need webrick to run JS tests using Teaspoon. This dependency is no more bundled with latest ruby versions and won't be available unless explicitely added to the Gemfile. Ref: https://www.ruby-lang.org/en/news/2020/12/25/ruby-3-0-0-released/ Not sure why this started to pop now, maybe something with the ruby versions available in CircleCI. Anyway, it seems legit and we should do it. (cherry picked from commit 0f591e0355b7ba870ec69b96fec2e200f3e262bd) --- Gemfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Gemfile b/Gemfile index 4a077a81e47..a2c1b7d35f2 100644 --- a/Gemfile +++ b/Gemfile @@ -63,6 +63,7 @@ group :backend do # JavaScript testing gem 'teaspoon', github: 'jejacks0n/teaspoon', require: false gem 'teaspoon-mocha', github: 'jejacks0n/teaspoon', require: false + gem 'webrick', require: false end group :utils do