From 7357f1db44bc8b15d5b2e6467e0b4708dcd85471 Mon Sep 17 00:00:00 2001 From: Birgit Brecknell Date: Fri, 1 Mar 2024 09:51:46 +1100 Subject: [PATCH] Add a suitable .ruby-version The doc site currently uses some old Jekyll plugins that only support Ruby version 2. The .ruby-version file works with `rvm` and `rbenv` to force the use of a suitable Ruby version. Version 2.7.8 is the last version of Ruby 2, which is now past end-of-life. Even for folks who don't use `rvm` or `rbenv`, the .ruby-version file is a useful indicator of which version of Ruby to use. Signed-off-by: Birgit Brecknell --- .reuse/dep5 | 1 + .ruby-version | 1 + 2 files changed, 2 insertions(+) create mode 100644 .ruby-version diff --git a/.reuse/dep5 b/.reuse/dep5 index 88b440270c..2818f1d821 100644 --- a/.reuse/dep5 +++ b/.reuse/dep5 @@ -10,6 +10,7 @@ Source: https://docs.sel4.systems # License: ... Files: Gemfile.lock + .ruby-version .bundle/config Hardware/HiKey/*.patch Hardware/CEI_TK1_SOM/CANBoard/Tegra_CANboard_tofab_v1.zip diff --git a/.ruby-version b/.ruby-version new file mode 100644 index 0000000000..6a81b4c837 --- /dev/null +++ b/.ruby-version @@ -0,0 +1 @@ +2.7.8