Problem generating a Ruby on Rails app

Asked

Viewed 107 times

1

When trying to create a Ruby On Rails application this happened;

inserir a descrição da imagem aqui

inserir a descrição da imagem aqui

I tried to get around like this;

inserir a descrição da imagem aqui

how to solve this?

  • 1

    [OBS] Nothing against, but I advise using Linux or Mac for development with Ror.

1 answer

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

You are not signed in. Login or sign up in order to post.