Fix building with Jekyll on Ruby 3.4 (#1079)

Ruby 3.4 removed several standard library packages, so they have
to be installed as gems instead.

This also updates Jekyll to use a version that's supported in Ruby 3.4.

The minimum required Ruby version is now 3.2.
This commit is contained in:
Hugo Locurcio
2025-06-12 20:41:04 +02:00
committed by GitHub
parent fb56943a61
commit 5fe2df3dbb
5 changed files with 140 additions and 41 deletions

View File

@@ -1,8 +1,13 @@
source 'https://rubygems.org'
gem 'jekyll', '4.2.2'
gem 'jekyll', '4.4.1'
gem 'jekyll-watch'
gem 'jekyll-paginate-v2'
gem 'jekyll-redirect-from'
gem "webrick", "~> 1.8"
gem 'webrick', '~> 1.8'
# Required on Ruby 3.4 and later as these are no longer part of the standard library.
gem 'csv'
gem 'base64'
gem 'bigdecimal'