Browse Source

[Fix #335] Prevent rbenv from hashing gems at startup

master
Jeff Sandberg 12 years ago committed by Sorin Ionescu
parent
commit
29647947fe
  1. 4
      modules/ruby/init.zsh

4
modules/ruby/init.zsh

@ -17,11 +17,11 @@ if [[ -s "$HOME/.rvm/scripts/rvm" ]]; then @@ -17,11 +17,11 @@ if [[ -s "$HOME/.rvm/scripts/rvm" ]]; then
# Load manually installed rbenv into the shell session.
elif [[ -s "$HOME/.rbenv/bin/rbenv" ]]; then
path=("$HOME/.rbenv/bin" $path)
eval "$(rbenv init - zsh)"
eval "$(rbenv init - --no-rehash zsh)"
# Load package manager installed rbenv into the shell session.
elif (( $+commands[rbenv] )); then
eval "$(rbenv init - zsh)"
eval "$(rbenv init - --no-rehash zsh)"
# Install local gems according to operating system conventions.
else

Loading…
Cancel
Save