I have my Rails app in version 3.0.9 and Ruby in version 1.8.7. My app works fine, but with one important negative: is really slow.

I have been looking for possible solution for this problem and as the best solution seems to be upgrade of my currently Ruby version to the newest - 1.9.2.

I never do it yet, so I would like to ask you - if I will upgrade Ruby to the version 1.9.2, will be work my current app based on ruby 1.8.7 without a problems? And what's the best a way to upgrade on Mac OSX? (I have read RVM - is the best?)

And finally my last question - I tried to deploy my app to server, but there I have the same problem - on the server (Site5) is Ruby in 1.8.7 - and they told me they'ra support only Ruby in v.1.8.7.

How to solve this situation?

Thanks in advance

link|improve this question

76% accept rate
feedback

2 Answers

up vote 2 down vote accepted

You're stalling. You clearly know the answers to most of your questions, you're just shaky on whether or not you're right in your assumptions.

Yes 1.9.2 is faster. Yes you probably want to use RVM (though rbenv is gaining popularity too). You probably won't have many issues with your code updating to 1.9.2, but some libraries (e.g. rubydebug) are 1.8 specific.

I would recommend you don't stick with Site5. Either run your own (cloud?) server or (and I prefer this route) go with Heroku and focus on building your app, not managing a server.

link|improve this answer
feedback

Yes, it's better to use RVM or RBENV to handle multiple rubies. Of course, depend to your project, you could meet some errors/deprecations, but it's rather simple to solve them.

And, if your hoster has only 1.8.7 - that's sad, you must use 1.8.7 or switch to another one (hoster).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.