user4285288
user4285288

Reputation: 21

Gem error on rails

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

Answers (1)

user4285288
user4285288

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

Related Questions