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 <hugo.locurcio@hugo.pro>
master
Simon Krull 2021-12-12 16:00:30 +01:00 committed by GitHub
parent eb582fa1a4
commit 000799ec09
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -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'