bashrc: add gem binaries to $PATH

This commit is contained in:
Théophile Bastian 2017-06-18 14:04:13 +02:00
parent 191fa21369
commit 16918a12ee
1 changed files with 5 additions and 0 deletions

View File

@ -54,3 +54,8 @@ export LC_REALUSER='tbastian'
# Opam
which opam > /dev/null 2>&1 && [ -d ~/.opam ] && eval `opam config env`
# Gem
if [ -d "$HOME/.gem/ruby/2.4.0/bin" ] ; then
export PATH="$PATH:$HOME/.gem/ruby/2.4.0/bin"
fi