On 20 August 2011 16:14, Rodrigo Ruiz <[email protected]> wrote: > Hi, I'd like some help to install rails 3.1 without breaking old projects > that use rails 3.0.9.
Use rvm for this, then you can install seperate versions of Ruby, Rails and other gems for each application. > If I install rails 3.1, will it delete rails 3.0.9? > I don't understand much about it, but I think all my gems are installed in > the same gemset. Oh, are you using rvm already? If so just start a new gemset for the rails 3.1 app. > Or, if it is easier, simply install rails 3.1 and update old projects to it. > What I mean is, can I just follow the railscast about rails 3.1 or are there > other stuff that I have to change so that old projects can work from 3.0.9 > to 3.1? Using a new gemset you can keep your old projects working and update them when convenient by updating the app and the gemset. I find it best to have a gemset for each app, then they are fully independent. Colin -- 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.

