1
When trying to create a Ruby On Rails application this happened;
I tried to get around like this;
how to solve this?
1
When trying to create a Ruby On Rails application this happened;
I tried to get around like this;
how to solve this?
1
It seems problem in the SSL certificate (https access), windows does not seem to accept the certificate of the Gems repository, so can not finish the Bundle install.
Try one of the two alternatives:
1) Remove the secure url, and add a URL that does not use ssl (without https). Gem source -r https://rubygems.org/ Gem source -a http://rubygems.org/
2) Try the solution for windows at the end of this article: http://railsapps.github.io/openssl-certificate-verify-failed.html . A friend used this solution and solved the problem:
Solution for Windows Fletcher Nichol shows how to download a cacert.pem file and set an Environment variable to install the Certificate Authorities needed by the Openssl library.
Hug
Browser other questions tagged ruby-on-rails
You are not signed in. Login or sign up in order to post.
[OBS] Nothing against, but I advise using Linux or Mac for development with Ror.
– Jefferson Alison