Don't show ruby info if using system version

Based off a8fe1b3cb4 by @chauncey-garrett
This commit is contained in:
Kaleb Elwert 2017-11-09 13:55:20 -08:00
parent 7ebb5e9dda
commit c7dcd21c9e

View file

@ -20,6 +20,9 @@ if (( $+commands[rvm-prompt] )); then
version="$(rvm-prompt)"
elif (( $+commands[rbenv] )); then
version="$(rbenv version-name)"
if [[ $version == "system" ]]; then
version=""
fi
elif (( $+commands[ruby] )); then
version="${${$(ruby --version)[(w)1,(w)2]}/ /-}"
fi