views:

161

answers:

1

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.

+2  A: 

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

ADAM
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