I recently ran into the same rvm error:
"RVM - Capistrano integration was extracted into a separate stone, install: gem install rvm-capistrano
and delete the line $LOAD_PATH.unshift
, also note that" set: rvm_type ,: user "is now used by default (instead of: system). ( RuntimeError) "
Doing what the error suggested did not work for me at all.
What worked for me: rvm -v
When I did this, I saw that my rvm version was rvm 1.13.0
Using "rvm get" I did "rvm get 1.12.0" but still got the error
Then I tried "rvm get 1.11.0" and then presto, my rvm started working again.
I am not 100% sure what caused the error in the first place, but I think it all started when I tried to update rvm with rvm get stable
after I couldnβt install some gems. I found out that I was no longer able to install gems due to the fact that I updated my xcode to 4.3.2, and apparently, Apple changed its c complier, which does not play well with rvm.
Hope this helps someone.
source share