1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-21 15:30:09 +00:00
ohmyzsh/lib/rvm.zsh
2012-09-26 13:57:38 -07:00

6 lines
186 B
Bash

# get the name of the branch we are on
function rvm_prompt_info() {
ruby_version=$(~/.rvm/bin/rvm-prompt 2> /dev/null) || return
[[ ! -z $ruby_version ]] && echo "($ruby_version)"
}