Files
godot-website/Gemfile
Hugo Locurcio 7da2b8cab3 Add logger to Gemfile to fix Ruby 3.5.0 deprecation warning
This gem will be moved out of the standard library in Ruby 3.5.0.
While the website can still build fine with Ruby 3.4.x, this won't
be the case anymore with the latest Ruby version once 3.5.0 releases.
2025-06-23 16:58:45 +02:00

16 lines
300 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'
gem "logger", "~> 1.7"