From 72d5f5dbbe8cb9919f9d81c6d044d8954c6499d7 Mon Sep 17 00:00:00 2001 From: Gregory Trolliet Date: Sun, 10 Sep 2023 09:38:22 +0200 Subject: [PATCH] [BASH] Add Ruby Gems paths into bashrc --- .bashrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.bashrc b/.bashrc index 594d827..6935c64 100644 --- a/.bashrc +++ b/.bashrc @@ -218,3 +218,6 @@ export PATH="$HOME/.cargo/bin:$PATH" export PATH="$HOME/.local/bin:$PATH": export EDITOR='vim' +# Install Ruby Gems to ~/gems +export GEM_HOME="$HOME/gems" +export PATH="$HOME/gems/bin:$PATH"