From be95a1e60944077b60f9f3908cbeba1cf3399382 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Wed, 23 Aug 2017 11:10:46 -0700 Subject: [PATCH] [Linux] Set up rbenv --- dotfiles/lib/shellpath.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dotfiles/lib/shellpath.sh b/dotfiles/lib/shellpath.sh index 85e4d95a..d12a1834 100644 --- a/dotfiles/lib/shellpath.sh +++ b/dotfiles/lib/shellpath.sh @@ -111,6 +111,8 @@ function _ruby_setup { then export RBENV_ROOT="$(brew --prefix rbenv)" add_to_path "$RBENV_ROOT/bin" + else + add_to_path "$HOME/.rbenv/shims" fi hash rbenv 2> /dev/null && eval "$(rbenv init - --no-rehash)" }