Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
source 'https://rubygems.org'
gem 'github-pages'

# Explicitly require v4.0.4 to fix "Liquid Exception: undefined method 'tainted?' for an instance of String". See <https://github.com/jekyll/jekyll/issues/9233>.
gem 'liquid', '>=4.0.4'
# Explicitly require >=232 to make sure liquid >=4.0.4 is used, which has a fix for "Liquid Exception: undefined method 'tainted?' for an instance of String". See <https://github.com/jekyll/jekyll/issues/9233>.
gem 'github-pages', '>=232'

# Require some gems that are not part of the core anymore in recent Ruby versions.
gem 'csv'
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ css:
npx less --clean-css="--s1 --advanced" styles/styles.less > styles/styles.min.css

serve-dev:
docker run -it -p 4000:4000 -v $(PWD):/site -w /site library/ruby bash -c 'bundle install && bundle exec jekyll serve -H 0.0.0.0'
docker run -it -p 4000:4000 -v $(PWD):/site -w /site library/ruby:3 bash -c 'bundle install && bundle exec jekyll serve -H 0.0.0.0'