I was experiencing the following problem:
It seems your ruby installation is missing psych (for YAML output).
To eliminate this warning, please install libyaml and reinstall your ruby
So I tried to install the libyaml package via:
rvm pkg install libyaml
This is when I experienced the SSL certification problem mentioned above. This happens when your RVM certificates have expired. You can fix this by updating them via:
rvm get stable
After doing that curl could verify the SSL certificate and I was able to install the libyaml package.
Finally after reinstalling my ruby via:
rvm reinstall ruby-x.y.z
everything worked fine.
Posted to makandra dev (2012-08-27 10:08)