mirror of
https://github.com/godotengine/godot-website.git
synced 2026-09-03 23:34:58 +03:00
- 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.
19 lines
331 B
Ruby
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'
|
|
|