Skip to content

Commit

Permalink
Update Gemfile with missing webrick requirement
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
hugovergnes authored Sep 24, 2024
1 parent 15f51b5 commit eec9ca4
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit eec9ca4

Please sign in to comment.