Weird Issue with Rails 2.0.2+???

Hi. I have kept my rails installation up to date. Now I have 2.0.2.9216 installed, including a fewl older ones, back to the original 2.0.2 release, However, I keep on getting weird problems with newly created projects on line #44 of config/environment.rb:

config.time_zone = 'UTC'

So I did a "sudo gem cleanup" so that only 2.0.2-9216 remains, and created a new project, and now I have a different problem:

It appears that if you use "gem install rails --source=http:// gems.rubyonrails.org/" to install rails, you get a version of edge rails unless you specifically request version 2.0.2 (passing "-v 2.0.2" will install the current released version). You might also have http://gems.rubyonrails.org in your gem sources which (guessing here) would take priority over the gems on rubyforge.

That's exactly it. I removed it from my gem sources list, removed and re-installed Rails and dependencies, and I am good once more.

Thanks!

I’m going to guess that you’re running RadRails as your IDE. Apparently, the current developers of RadRails recently decided to start arbitrarily adding gem sources and forcibly imposing Edge Rails onto people who aren’t expecting it. That’s probably how gems.rubyonrails.org got added to your sources list in the first place.

nb wrote: