wayneeseguin-rvm 0.0.7 → 0.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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
|
|