SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed
This error is actually produced by changes on rubygems site certificate in lieu of recent OpenSSL vulnerabilities. To fix this error one need to upgrade their rubygems
RubyGems bundles its trust certificate within itself (as it is used from command line tool), where some OS does not able to verify the identity of them.
Recently CA for RubyGems.Org has changed, thus changing the certificate. Because of this existing installation of rubygems has to be upgraded. In case of windows since most people use RailsInstaller it is still distributed with old rubygems.Leaving RubyGems 2.4 is broken on Windows.
Once official releases are out, installation might be simpler. In the meantime, please proceed using the instructions described below.
1.) Find RubyGems version by running gem -v
2.) Download rubygems-update-X.Y.Z.gem
(find the version higher than your current version)
You can find download links at GitHub under Releases.
Version for the version of RubyGems you need to update:
Please move file out of Downloads/ folder to somewhere you can later point out
3.) Install gem locally (by running below specified command)
C:\> gem install --local C:\rubygems-update-1.8.30.gem
C:\> update_rubygems --no-ri --no-rdoc
4.) After this check gems version gem -v
. This should be updated version
5.) You could now uninstall rubygems-update
C:\>gem uninstall rubygems-update -x
Removing update_rubygems
Successfully uninstalled rubygems-update-2.2.3
1.) Identify proxy IP for system
- Look for Proxy settings in IE OR
- Look for Proxy settings in Firefox
2.) Set Up HTTP_PROXY Environment Variable (By using MS Control Panel)
OR
3.) Setup using cmd
CoffeeScriptError (Windows 64 Bit): ExecJS::ProgramError in Posts#index' TypeError: Object doesn't support this property or method
Rollback coffee-script-source
back to version 1.8.0 by adding following line to your Gemfile
gem 'coffee-script-source', '1.8.0'
After that update coffee-script-source
by running
bundle update coffee-script-source