Skip to content

Commit

Permalink
update to ruby 3
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Decimelli <[email protected]>
  • Loading branch information
stefandecimelli committed Oct 23, 2024
1 parent 27f89b3 commit ae7da0a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions DEVELOPING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/Gemfile
Original file line number Diff line number Diff line change
@@ -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'
Expand Down

0 comments on commit ae7da0a

Please sign in to comment.