From 91817e84d4c3d2110c9d42c021d497b0a4d07f38 Mon Sep 17 00:00:00 2001 From: Mike Linksvayer Date: Mon, 5 Apr 2021 00:13:49 -0700 Subject: [PATCH] Add webrick to Gemfile so jekyll serve works under ruby 3 As noted in https://github.com/github/choosealicense.com/issues/822 --- Gemfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Gemfile b/Gemfile index fda964b..3a72062 100644 --- a/Gemfile +++ b/Gemfile @@ -8,6 +8,9 @@ versions = JSON.parse(Net::HTTP.get(URI('https://pages.github.com/versions.json' gem 'github-pages', versions['github-pages'] +# https://github.com/jekyll/jekyll/issues/8523 +gem "webrick", "~> 1.7" + group :development do gem 'colored' gem 'fuzzy_match'