When trying to create a Ruby On Rails application, this happened;
I tried to skirt this way;
How to solve this?
When trying to create a Ruby On Rails application, this happened;
I tried to skirt this way;
How to solve this?
It seems like a problem with the SSL certificate (https access), windows does not seem to accept the gems repository certificate, so it can not finish the bundle install.
Try one of two alternatives:
1) Remove the secure url, and add a URL that does not use ssl (without httpS). gem source -r link gem source -a link
2) Try the solution for windows at the end of this article: link . 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. / em>
Embrace