From 000799ec098bfde93969094ac75c77d94004c163 Mon Sep 17 00:00:00 2001 From: Simon Krull Date: Sun, 12 Dec 2021 16:00:30 +0100 Subject: [PATCH] Add webrick as dependency in Gemfile (#244) webrick is not included in Ruby 3.0.0 and later, so it needs to be installed separately. Co-authored-by: Hugo Locurcio --- Gemfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Gemfile b/Gemfile index 17a146f..0529105 100644 --- a/Gemfile +++ b/Gemfile @@ -8,3 +8,6 @@ gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] # Add wdm to avoid polling on Windows gem 'wdm' if Gem.win_platform? + +# webrick is not included in Ruby 3.0.0 and later, but it's required for the Jekyll development server. +gem 'webrick'