From ae7da0aa437c069781105819c6a24507dc940fc0 Mon Sep 17 00:00:00 2001 From: Stefan Decimelli Date: Wed, 23 Oct 2024 14:09:11 -0400 Subject: [PATCH] update to ruby 3 Signed-off-by: Stefan Decimelli --- DEVELOPING.md | 4 ++-- docs/Gemfile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/DEVELOPING.md b/DEVELOPING.md index 63584c7d4..46cc85e73 100644 --- a/DEVELOPING.md +++ b/DEVELOPING.md @@ -336,12 +336,12 @@ For local development, you may want to run this instead: This will start a local webserver that listens on `127.0.0.1:4000` and rebuilds the site whenever you make changes. -> To be able to build the docs with Jekyll, you'll need [Ruby 2](https://www.ruby-lang.org/en/), +> To be able to build the docs with Jekyll, you'll need [Ruby 3](https://www.ruby-lang.org/en/), > [RubyGems](https://rubygems.org/pages/download) and [Bundler](https://bundler.io/) installed. > If you can't be bothered to install all of this, you can use the > [Jekyll container image](https://hub.docker.com/r/jekyll/jekyll) instead, e.g.: > ``` -> docker run --rm -it --name jekyll -p "127.0.0.1:4000:4000" -v "$(pwd)/docs:/srv/jekyll:Z" jekyll/jekyll:3.8 jekyll serve +> docker run --rm -it --name jekyll -p "127.0.0.1:4000:4000" -v "$(pwd)/docs:/srv/jekyll:Z" jekyll/jekyll:4.2.2 jekyll serve > ``` ## Feature Branches diff --git a/docs/Gemfile b/docs/Gemfile index 1eff7bb71..760246a2d 100644 --- a/docs/Gemfile +++ b/docs/Gemfile @@ -1,6 +1,6 @@ source 'https://rubygems.org' -ruby '~> 2.6' +ruby '~> 3.1' gem 'jekyll', '~> 3.9' gem 'kramdown-parser-gfm', '1.1.0'