0

I am trying to create a Ruby On Rails application but I got this error:

certificate verify failed

Any suggestions? It seems there is a problem downloading gems.

Phil Ross
  • 25,590
  • 9
  • 67
  • 77
Sandro Palmieri
  • 1,193
  • 2
  • 12
  • 26
  • possible duplicate of [SSL Error When installing rubygems, Unable to pull data from 'https://rubygems.org/](http://stackoverflow.com/questions/19150017/ssl-error-when-installing-rubygems-unable-to-pull-data-from-https-rubygems-o) – Phil Ross Jun 07 '15 at 20:08

1 Answers1

0

Open your Gemfile and change

source 'https://rubygems.org

to

source 'http://rubygems.org

then do bundle install again.

reference - bundle install fails with SSL certificate verification error

Community
  • 1
  • 1
Vijay Meena
  • 683
  • 1
  • 7
  • 12