Files
godot-website/Gemfile
Adam Scott f18a4e1810 Ensure new cover images only use basic image formats (#1229)
- Add new filter `ensure_magic_type` (`_plugins/ensure_magic_type.rb`) that checks the input magic type and compares it to its parameter. If it doesn't match, it fails the build. There's optional context parameters to explain the check.

- Add new filter `is_legacy_cover_image` (`_plugins/is_legacy.rb`) that
is essentially a grand-fathered clause check to see if we apply
a `ensure_magic_type` check for the cover image.
2026-01-21 11:40:32 +01:00

19 lines
331 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"
gem 'ruby-magic', '~> 0.6.0'