Upgrade jekyll and Ruby

When switching to a new mac, my version of Ruby got bumped up to 3.0 and jekyll to 4.2.0. A few things changed along the way and broke this website. So here is what I had to do to fix it:

source "https://rubygems.org"

gem "webrick", "~> 1.7"

gem "kramdown-parser-gfm", "~> 1.1"

gem "jekyll-watch", "~> 2.2"

gem "jekyll-paginate"
gem "jekyll-seo-tag"
gem "jekyll-sitemap"
gem "jekyll-gist"

You then run bundle install (you obviously need to install bundle before).

bundle exec jekyll serve
[ jekyll  ruby  mac  ]