I have a project that was created using Rails 2.0.1 and is now on a
computer which has Rails 2.1.0 installed. Is there an easy way to
update the project? If I run "rake rails:update" in the root directory
of my project (which seems like what I want to do), it complains that
the 2.0.1 gem is not installed.
first: change in environment.rb ,set 2.0.1 to 2.1.0
second: rake rails:freeze:edge TAG=rel_2-0-1, old project use old
rails, that's my idea
third: change back 2.1.0 to 2.0.1
the project use rails in vendor/rails and new and old project both ok.