Difference between revisions of "SSL Certificate Update"

From Test Automation Wiki
Jump to: navigation, search
Line 11: Line 11:
  
 
Then we delete the old source with <code>gem sources -r https://rubygems.org</code>
 
Then we delete the old source with <code>gem sources -r https://rubygems.org</code>
 +
 
This will bypass the security and allows you to install the gems.
 
This will bypass the security and allows you to install the gems.
  
  
 
[[Category:FAQ]]
 
[[Category:FAQ]]

Revision as of 18:34, 13 March 2017

Clean solution

If this error occurs you can't install any gems. Most likely this happen because there is an old ruby gems installed on your computer.

  1. Download the latest GEM of rubygems here
  2. Go to the directory in CMD
  3. Write the following to install the GEM ruby setup.rb
    • With gem -v you can verify the newest version is correctly installed.

With the newest version installed it should be possible again to install gems.

"Unsafe" solution if updating rubygems doesn't work

First we add a new source with gem sources -a http://rubygems.org

Then we delete the old source with gem sources -r https://rubygems.org

This will bypass the security and allows you to install the gems.