views:

821

answers:

3

I'm deploying to Ubuntu slice on slicehost, using Rails 2.1.0 (from gem)

If I try mongrel_rails start or script/server I get error:

Rails requires RubyGems >= 0.9.4. Please install RubyGems

When I type gem-v i have 1.2.0. Any quick tips on what to look at to fix?

+1  A: 

Have you tried reinstalling RubyGems? I had a pretty similar error message until I reuninstalled and for some reason, it installed into a different directory and then the problem went away.

Chris Bunch
A: 

Just finally found answer... I was missing a gem, and thrown off by bad error message from Rails...

ryw
+1  A: 

run script/server, it has a much better error message for gems missing

DevelopingChris