macfizz wrote:
> Anyway, for various reasons I''m not that happy with 2.0.2 and want
to
> downgrade my entire installation to where it was working nicely. I
> don''t know either the version numbers I need (though I think I am
> looking for v 1.8.x of Rails and whatever goes with that)
$ gem search -r rails
...
rails (2.0.2, 2.0.1, 2.0.0, 1.2.6, 1.2.5...
Then:
gem install rails v=1.2.6
Then edit config/environment.rb like this:
#RAILS_GEM_VERSION = ''2.0.2''
RAILS_GEM_VERSION = ''1.2.6''
Run all your tests. (You do _have_ tests, right?)
If any test fails, pass it, switch back to 2.0.2, and integrate. (That means
pass all tests, then copy your code to your version controller.) Keep switching
back and forth until all tests pass in both versions, and manual tests pass.
Then stay with 1.2.6.
--
Phlip
http://assert2.rubyforge.org/
--~--~---------~--~----~------------~-------~--~----~
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
rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
To unsubscribe from this group, send email to
rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---