Tips for Job Interviews as a Junior Software Developer Sep 27, 2020
As coding bootcamps such as Coder Academy and General Assembly churn out more and more software developers, and as more and more people…
Don’t you just hate it when you have a fresh intall of Mountain Lion, RVM and some rubies - then all of a sudden you hit this OpenSSL::SSL::SSLError
error message:
SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed
The fix is quite simple actually, all you need to do is to download a CA root certificate:
curl http://curl.haxx.se/ca/cacert.pem -o ~/.rvm/usr/ssl/cert.pem
And that’s it! Enjoy!