rubygems-update issue on Ubuntu
rubygems-update issue on Ubuntu
If you have this problem on your computer:
sudo gem update --system Updating RubyGems Bulk updating Gem source index for: http://gems.rubyforge.org/ Updating rubygems-update ERROR: While executing gem ... (Gem::GemNotFoundException) could not find rubygems-update locally or in a repository
The problem is RubyGems you need to install manually or use this script solution:
#!/bin/bash #(download the latest on http://rubyforge.org/frs/?group_id=126) wget http://rubyforge.org/frs/download.php/43984/rubygems-update-1.3.0.gem sudo gem install rubygems-update-1.3.0.gem sudo update_rubygems # now this work: sudo gem update --system echo "done."
I found this solution on this web:
http://rubyglasses.blogspot.com/2008/08/updating-gem-to-120-on-ubuntu.html



This was a lifesaver, thanks!
Thanks a lot. This was just what i needed
+1 on lifesaver. Had the same issue when going to Rails 2.2.
Thank you!