The new devcontainer is specially crafted to be used in VS Code or GitHub Codespaces. It is Ubuntu 22.04 with git plus the Ruby stack to run Jekyll to convert the website to HTML.
The committed Gemfile.lock is the result of running bundle install after I did the following updates:
Ruby version: 2.4.3 -> 3.0.2 (in .ruby-version file)
Bundler version: 2.0.1 -> 2.3.5 (in Dockerfile)
From now on we can have everything pinned and (hopefully) stable.
Jekyll and redcarpet versions were not bumped.
The only noticeable difference in the generated HTML was the use of ' instead of a literal ', when appearing in an escaped text (see feed.xml file).
The new devcontainer is specially crafted to be used in VS Code or GitHub Codespaces. It is Ubuntu 22.04 with git plus the Ruby stack to run Jekyll to convert the website to HTML.
The committed
Gemfile.lock
is the result of runningbundle install
after I did the following updates:.ruby-version
file)From now on we can have everything pinned and (hopefully) stable.
Jekyll and redcarpet versions were not bumped.
The only noticeable difference in the generated HTML was the use of
'
instead of a literal ', when appearing in an escaped text (seefeed.xml
file).