Error loading RubyGems plugin ,openssl.bundle (LoadError)
Things to verify...
- How did you install rvm
- hit
rvm notes
and check if it's installed properly ruby -v
, check for the version of ruby present
If you find any issues here, uninstall rvm using rvm implode
and also remove ruby. Refer to the rvm installation guide for the use of this command.
\curl -L https://get.rvm.io | bash -s stable --ruby
OR you can try the other way without removing the present rvm installation.
rvm get stable
rvm reinstall 2.0.0
Hope this helps.
The following worked for me.
brew rm openssl
brew cleanup openssl
brew install openssl
rvm reinstall ruby
Apparently brew update
or brew upgrade
breaks the Ruby runtime which is what caused the error for me.