Reputation: 51911
ruby 1.8.7 does not compile well under Lion and Xcode 4.2. I'd like to know whether ruby 1.9.2-p290 fully supports rails 2.3.5 and/or 2.3.11?
Upvotes: 0
Views: 1270
Reputation: 21
Another (slightly older) resource for checking out whether your associated gems might work is IsItRuby19. It hasn't been getting as much traffic as it did in the past, but when assessing whether Rails 2.x apps would work on 1.9.x Ruby, it might help flesh out the rest of your stack. It has a few notes about the Rails gem set-proper (somewhat stale), and some current notes about many other common gems.
Might save some research time or get pointers before tracking down lots of release notes.
Upvotes: 1
Reputation: 716
There were some problems with the new encoding features in 1.9.2 in some older versions of rails. You should use the newest version of rails 2.3.x also for security reasons...
Upvotes: 1
Reputation: 37507
It's more a question if Rails is supported on Ruby 1.9.2 - but yes, it should run fine on Ruby 1.9.2 - also you need to ensure that Gems you are intending to run work on both Rails 2.3.x and Ruby 1.9.x which will be down to each gem individually.
Upvotes: 4