RubyGems upgrade 0.9.5
November 21, 2007 at 19:56 #
RubyGems is available in version 0.9.5. And installing it with gem update --system broke about everything on my system :-(
Gems couldn't find any already installed gem anymore. The fix was easy, though a bit time consuming: re-install all gems you have.
$ export installed_gems="`ls /Library/Ruby/Gems/gems/ | sed s/-[^-]*$//g | sort -u`" $ gem install $installed_gems
(with /Library/Ruby/Gems/gems/ being the path to your gems)