From d6e547b94ea848c4e2f2776a5d07a7e4176a9117 Mon Sep 17 00:00:00 2001 From: Thomas Ritter Date: Mon, 15 Jul 2024 19:52:50 +0200 Subject: [PATCH 1/2] Add instructions for Fedora installation --- README.md | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 69ea17d9..7c39e90d 100644 --- a/README.md +++ b/README.md @@ -52,13 +52,21 @@ On systems with Homebrew package manager, the “Using Package Managers” metho rbenv and you can install it from the AUR using the instructions from this [wiki page](https://wiki.archlinux.org/index.php/Arch_User_Repository#Installing_and_upgrading_packages). -2. Set up your shell to load rbenv. + #### Fedora + + Fedora has an [official package](https://packages.fedoraproject.org/pkgs/rbenv/rbenv/) which you can install: + + ```sh + sudo dnf install rbenv + ``` + +3. Set up your shell to load rbenv. ```sh rbenv init ``` -3. Close your Terminal window and open a new one so your changes take effect. +4. Close your Terminal window and open a new one so your changes take effect. That's it! You are now ready to [install some Ruby versions](#installing-ruby-versions). From 873e0249a57f0dc79d1ba944fbd0cd8b3b58eda4 Mon Sep 17 00:00:00 2001 From: Thomas Ritter Date: Mon, 15 Jul 2024 19:56:13 +0200 Subject: [PATCH 2/2] Fix numbering --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7c39e90d..e4560c66 100644 --- a/README.md +++ b/README.md @@ -60,13 +60,13 @@ On systems with Homebrew package manager, the “Using Package Managers” metho sudo dnf install rbenv ``` -3. Set up your shell to load rbenv. +2. Set up your shell to load rbenv. ```sh rbenv init ``` -4. Close your Terminal window and open a new one so your changes take effect. +3. Close your Terminal window and open a new one so your changes take effect. That's it! You are now ready to [install some Ruby versions](#installing-ruby-versions).