Reputation: 21
Bundle install on rails does not complete due to the following error:
Gem::RemoteFetcher::FetchError: SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed (https://rubygems.global.ssl.fastly.net/gems/jbuilder-2.2.5.gem)
An error occurred while installing jbuilder (2.2.5), and Bundler cannot
continue.
Make sure that gem install jbuilder -v '2.2.5'
succeeds before bundling.
Each time I try to bundle install or bundle update, I get the same error. How do I fix this problem?
Upvotes: 1
Views: 141
Reputation: 21
Okay, so I got the solution to my problem. Looks like I was running an old version of bundler. So I updated the version of bundler and then installed the required gem. Bundler version information and commands can be found on http://bundler.io/. It works perfectly fine now!
Upvotes: 1