views:

45

answers:

2

I will have to use JDBC with an old database, which I why I selected jRuby. If I get a book on ruby on rails that does not include jRuby information, will that be benficial to me?

+2  A: 

Yes it will. Jruby is just another Ruby implementation, so pretty much everything that works in regular Ruby will work in Jruby as well. They have worked very hard at getting rails to run really well with Jruby While there are some gems that currently will not run in jruby, a Ruby On Rails book will definitely be relevant.

Rob Di Marco
A: 

One thing to keep in mind though is you cannot run native (C code) gems with JRuby. However most of the popular ones have ports.

Samuel Holloway