mirror of
https://github.com/godotengine/godot-website.git
synced 2025-12-31 09:48:43 +03:00
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.
14 lines
276 B
Ruby
14 lines
276 B
Ruby
source 'https://rubygems.org'
|
|
|
|
gem 'jekyll', '4.4.1'
|
|
gem 'jekyll-watch'
|
|
gem 'jekyll-paginate-v2'
|
|
gem 'jekyll-redirect-from'
|
|
|
|
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'
|