rubygem install SSL error [duplicate] - ruby

This question already has answers here:
SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed
(37 answers)
Closed 8 years ago.
Anytime I try to install any gem of late I get this kind of error message for example:
could not find a valid gem 'bundler' (>= 0), here is why: unable to
download data from https://rubygems.org/ - SSl_connects returned=1
eerno=0 state=SSLv3 read server certificate B: certificate verify
failed (https://api.rubygems.org/latest_specs.4.8.gz)
I don't know what to do.

This ticket contains several solutions. You may want to
Try to upgrade your local RubyGems setup
$ gem update --system
If you use RVM, upgrade RVM and upgrade the certificates.
Here's a debugging tool.

Related

Error while install scss-lint on Visual Studio Code

I am trying to install gem scss-lint and get the following message error:
gem install scss_lint
ERROR: Could not find a valid gem 'scss_lint' (>= 0), here is why:
Unable to download data from https://rubygems.org/ - SSL_connect returned=1 errno=0 state=SSLv2/v3 read server hello A: tlsv1 alert protocol version (https://rubygems.org/latest_specs.4.8.gz)
I have tryed the following command
gem source -a https://rubygems.org/ following an issue reported on their GitHub but I still have another error message:
YAML safe loading is not available. Please upgrade psych to a version that supports safe loading (>= 2.0).
(I am working on MAC OSX if this may help)
Any idea ?
This is a known issue. Take a look at these links for more info: https://gist.github.com/luislavena/f064211759ee0f806c88
https://github.com/rubygems/rubygems/issues/1050
Short term workaround is using this source: 'http://rubygems.org'

gem install sass error

I am trying to install sass and I tried ruby installer. I am getting the error as follow.Please anyone help.
C:\Ruby23-x64>gem install sass
ERROR: Could not find a valid gem 'sass' (>= 0), here is why:
Unable to download data from https://rubygems.org/ - SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed (https://api.rubygems.org/specs.4.8.gz)
gem install by default uses https://rubygems.org/ as it's source for gems, but you can specify the source using --source option and give a non-SSL source to install like following:
gem install sass --source http://rubygems.org/

Ruby Certificate Error

I am trying to install a migration tool called move to go for a CRM system called Lime but I get an error. I dont know why, the certificate says it's valid in the SSL.
This is the step by step guide that I am executing:
https://github.com/Lundalogik/move-to-go/blob/master/step-by-step.md
and this is the documentation:
https://github.com/Lundalogik/move-to-go
C:\Users\gujo>gem install move-to-go
ERROR: Could not find a valid gem 'move-to-go' (>= 0), here is why:
Unable to download data from https://rubygems.org/ - SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed (https://api.rubygems.org/latest_specs.4.8.gz)
Any suggestions?
This is due to Ruby SSL certificate that has changed.
You can install a newer version of RubyGem to fix the issue.
Example, on Windows:
Download https://rubygems.org/downloads/rubygems-update-2.6.7.gem and save it to C:\rubygems-update-2.6.7.gem
Open a command prompt and run the commands :
gem install --local C:\rubygems-update-2.6.7.gem
update_rubygems --no-ri --no-rdoc
gem --version and check it is 2.6.7
gem uninstall rubygems-update -x to remove the update package
Finally, retry your gem install command and the SSL error should be gone !
Source: http://guides.rubygems.org/ssl-certificate-update/#installing-using-update-packages

Cannot install cucumber

I have installed Ruby by way of the command prompt. Verified that I had the most updated version. I am now trying to install cucumber. Right on the cucumber site, it says to simply use the prompt gem install cucumber to get it to install. Gem fails to make the call to cucumber with these result on the command prompt:
ERROR: Could not find a valid gem 'cucumber' (>= 0),
here is why:
Unable to download data from https://rubygems.org/ - SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed (https://api.rubygems.org/specs.4.8.gz)

ruby could not find valid gem

I have been trying to develop a Ruby on Rails app but cannot. I have unistalled and reinstalled and it keeps saying cert not found even though I can see the cert on my computer.
C:\DevKit>gem install json --platform=ruby
ERROR: Could not find a valid gem 'json' (>= 0), here is why:
Unable to download data from https://rubygems.org/ - SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed (https://api.rubygems.org/specs.4.8.gz)
C:\DevKit>gem install json -- platform=ruby2.2
ERROR: Could not find a valid gem 'json' (>= 0), here is why:
Unable to download data from https://rubygems.org/ - SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed (https://api.rubygems.org/specs.4.8.gz)
C:\>update_rubygems --no-ri --no-rdoc
RubyGems 2.3.0 installed
RubyGems installed the following executables:
C:/Ruby22/bin/gem
C:\>cd devkit
C:\DevKit>cd assignment_10
C:\DevKit\Assignment_10>cd C:\DevKit\Assignment_10
C:\DevKit\Assignment_10>cd ..
C:\DevKit>gem install json --platform=ruby
ERROR: Could not find a valid gem 'json' (>= 0), here is why:
Unable to download data from https://rubygems.org/ - SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed (https://api.rubygems.org/specs.4.8.gz)
C:\DevKit>gem install bson_ext --platform=ruby
ERROR: Could not find a valid gem 'bson_ext' (>= 0), here is why:
Unable to download data from https://rubygems.org/ - SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed (https://api.rubygems.org/specs.4.8.gz)
C:\DevKit>
Thanks for any help you can provide.
You could try to just get it from http://rubygems.org/
If you want to use Rails on windows, I suggest you to look at this installer which is pretty great : RailsInstaller

Resources