I’m installing a new server for run Rails apps, I already have 1 app that I want to deploy, but it is on Ruby 1.9.2.
Which version of Ruby do you recommend me to install on the server, Ruby 1.9.3 (now the stable) or Ruby 1.9.2 ?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I would recommend using ruby 1.9.3 as the stable version comes with a patch for
requirewhich should increase the speed of your rails app, but as always:benchmarkis not your enemy!Also AFAIK any ruby code written for ruby 1.9.2 should work just fine on 1.9.3, but not vice versa.So it should be save to move your app to 1.9.3.