wayneeseguin-rvm 0.0.7 → 0.0.8
Sign up to get free protection for your applications and to get access to all the features.
- data/bash/rvm +2 -0
- metadata +1 -1
data/bash/rvm
CHANGED
@@ -294,12 +294,14 @@ function rvm-install-ruby {
|
|
294
294
|
|
295
295
|
function rvm-use {
|
296
296
|
|
297
|
+
implementation="${1-$implementation}"
|
297
298
|
case "$implementation" in
|
298
299
|
|
299
300
|
default)
|
300
301
|
rm -f ~/.rvm/current
|
301
302
|
unset MY_RUBY_HOME
|
302
303
|
unset GEM_HOME
|
304
|
+
unset RUBY_VERSION
|
303
305
|
;;
|
304
306
|
#leopard) MY_RUBY_HOME="/System/Library/Frameworks/Ruby.framework/Versions/Current/usr"; GEM_HOME="$HOME/.gem/ruby/1.8" ;;
|
305
307
|
|