Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've Google around and haven't found much...

I'm trying to run script/server for my Rails project, and I get

Rails requires RubyGems >= 1.3.2. Please install RubyGems and try again: http://rubygems.rubyforge.org

gem --version Shows 1.3.6. Rails and all gems were installed using sudo. I'm on Mac OSX 10.6.

share|improve this question
Hmm, I did run sudo port install subversion-rubybindings the other night. Maybe that F*d things up. sigh – Chad Johnson Mar 13 '10 at 21:35

1 Answer

up vote 3 down vote accepted

what does /usr/bin/env ruby -v and /usr/bin/env gem -v show ?

You may be running two versions of ruby/gem and your rails app is accessing the wrong one

Also try checking your environment path and make sure its looking at the correct version

share|improve this answer
1  
Ah, I had a ruby binary in /opt/local/bin. I've symlinked it with /usr/bin/ruby, and things seem to work. Thanks! – Chad Johnson Mar 13 '10 at 21:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.