From 6afa220a39cbc0c230e1273b831c83e3e962314d Mon Sep 17 00:00:00 2001 From: Matt Wang Date: Mon, 18 Apr 2022 08:28:57 -0700 Subject: [PATCH] adds `webrick` to `Gemfile` (#799) This is one solution for #798, namely that `webrick` is needed as an explicit dependency for Ruby 3+. Closes #798. --- Gemfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Gemfile b/Gemfile index 3be9c3c..43563e9 100644 --- a/Gemfile +++ b/Gemfile @@ -1,2 +1,4 @@ source "https://rubygems.org" gemspec + +gem "webrick", "~> 1.7"