Quoting Rajesh B. <[email protected]>: > Hi all, > > i have installed rails 3 using RVM . the prob is now i have two parallel > projects where one is in 2.3.5 and another is in rails3. > [snip]
Look in config/environment.rb for a line like this, or add it if necessary: # Specifies gem version of Rails to use when vendor/rails is not present RAILS_GEM_VERSION = '2.3.5' unless defined? RAILS_GEM_VERSION Or as implied by the comment, freeze rails (AKA vendoring Rails). Google 'freeze Rails' for implementation details. HTH, Jeffrey -- 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 [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

