Fix requirements checks for ruby module

Load any ruby version manager before checking the availability of ruby
command.
This commit is contained in:
Martin André 2012-09-23 22:20:04 +09:00
parent 20d7ec0ab8
commit 7614097e6c

View file

@ -5,11 +5,6 @@
# Authors: Sorin Ionescu <sorin.ionescu@gmail.com> # Authors: Sorin Ionescu <sorin.ionescu@gmail.com>
# #
# Return if requirements are not found.
if (( ! $+commands[ruby] )); then
return 1
fi
# Load RVM into the shell session. # Load RVM into the shell session.
if [[ -s "$HOME/.rvm/scripts/rvm" ]]; then if [[ -s "$HOME/.rvm/scripts/rvm" ]]; then
# Unset AUTO_NAME_DIRS since auto adding variable-stored paths to ~ list # Unset AUTO_NAME_DIRS since auto adding variable-stored paths to ~ list
@ -36,6 +31,11 @@ else
fi fi
fi fi
# Return if requirements are not found.
if (( ! $+commands[ruby] )); then
return 1
fi
# #
# Aliases # Aliases
# #