Reputation: 335
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)
Upvotes: 0
Views: 5735
Reputation: 73589
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/
Upvotes: 1