Sorry, the current version of rubygems is 1.3.4. You can adjust the commands I suggested from 1.3.1 to 1.3.4.
On Jun 14, 10:26 pm, Sheldon Finlay <[email protected]> wrote: > Try typing the following to determine which version of rubygems you > have installed: > > gem -v > > The current version is 1.3.1 > > I suspect you might have competing versions of rubygems or ruby > installed. You can find out which path is being used for each by > typing: > > which ruby > which gem > > Depending upon what you find, you may need to re-install rubygems from > scratch. If your gem path and ruby path vary (for example, ruby is / > usr/bin/ruby and rubygems are /usr/local/bin/gem) then I'd suggest > reinstalling rubygems like so: > > curl -Ohttp://rubyforge.iasi.roedu.net/files/rubygems/rubygems-1.3.1.tgz > tar xzvf rubygems-1.3.1.tgz > cd rubygems-1.3.1 > sudo /usr/bin/ruby setup.rb > > That last line should mirror the full path to the ruby executable. So > if when you typed 'which ruby' it returned /usr/local/bin/ruby, then > you'd want to use that instead: > > sudo /usr/local/bin/ruby setup.rb > > Hope this helps. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---

