I've built a rails app on my local host using Ruby 1.9.3, it works great and does everything it's supposed to do locally. However, I'm using dreamhost as a cheap host for this app and it turns out that their install of passenger only supports up to 1.8.7.
This is a bit of a problem, since there's a lot of files that use the "key: value" syntax that's afforded by 1.9 as opposed to the classic ":key=>value" syntax of older rails versions. So my question is, is there any way to quickly change all these syntax issues or am I stuck manually going through the files to make any necessary changes?
Thanks in advance