From eec9ca4c35c40dea74feb20af7be8d0b1fa6d7af Mon Sep 17 00:00:00 2001 From: hugovergnes <43475448+hugovergnes@users.noreply.github.com> Date: Mon, 23 Sep 2024 21:53:32 -0700 Subject: [PATCH] Update Gemfile with missing webrick requirement MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Starting with Ruby 3.0, the webrick library, which Jekyll uses to serve websites locally, is no longer included in the standard library. You’ll need to manually add it to your project’s dependencies if it's not there by default. --- Gemfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Gemfile b/Gemfile index 8deb2688e07..f56f8d449fe 100644 --- a/Gemfile +++ b/Gemfile @@ -1,6 +1,7 @@ source "https://rubygems.org" gem "jekyll", "~> 4.2.0" +gem "webrick", "~> 1.7" group :jekyll_plugins do gem "jekyll-feed", "~> 0.12"