bash-it/plugins/available/rbenv.plugin.bash

8 lines
276 B
Bash

#!/usr/bin/env bash
# Load rbebv, if you are using it
export PATH="$HOME/.rbenv/bin:$PATH"
[[ `which rbenv` ]] && eval "$(rbenv init -)"
# Load the auto-completion script if rbenv was loaded.
[[ -e ~/.rbenv/completions/rbenv.bash ]] && source ~/.rbenv/completions/rbenv.bash