I'm looking to try out JRuby and JRuby on Rails. I'm having trouble finding information on what's difference between JRuby on Rails and Ruby on Rails.
What's the differences I need to look out for?
|
I'm looking to try out JRuby and JRuby on Rails. I'm having trouble finding information on what's difference between JRuby on Rails and Ruby on Rails. What's the differences I need to look out for?
| ||||
|
feedback
|
|
JRuby is the ruby implementation that runs on a JVM whereas Matz's ruby is a C implementation. Key features to note are:
There are other differences which are listed at the jruby wiki: Cheers, Teera | |||||||||||||
feedback
|
|
I may be wrong, but I think you can package a JRuby on Rails app in a way you can't do with normal RoR - look at Mingle or similar. Makes it possible to sell without dropping your pants / opening the komono. That said, I'm not familiar enough with RoR packaging, so dont hold me to it :) | |||
feedback
|
|
mostly it should work the same. in jRoR you can access stuff you wouldn't have in RoR. Usually its mainly a deployment concern. However, if your RoR app uses native libraries that don't have an equivalent that runs on the JVM, that can be a pain. However most libs have a non native version available (at least the popular ones I have come across). | |||
|
feedback
|