Reputation: 103
I am trying to update ruby gems by using:
gem update --system
But I am getting error:
ERROR: While executing gem ...(Gem::RemoteFetcher::UnknownHostError) no such name (https://rubygems.org/specs.4.8.gz).
Upvotes: 10
Views: 11983
Reputation: 584
Unsure what version of rubygems you have installed, however there are three ways to fix:
the version you have is bricked for updates, and you will need to install another way
NOTE: RubyGems 1.1 and 1.2 have problems upgrading when there is no rubygems-update installed. You will need to use the following instructions if you see Nothing to update. If you have an older version of RubyGems installed, then you can still do it in two steps:
$ gem install rubygems-update # might need to be admin/root
$ update_rubygems
Failing that you have to get your hands dirty:
See https://rubygems.org/pages/download for more info
Upvotes: 6