The first question that you need to ask yourself is are you wanting to use JRuby or native interpretor? Because it's a huge difference when choosing the IDE.
For JRuby, you have several fully fledged IDEs as posted here, mostly written in Java. For native interpretation, you are better off with a text editor that supports and understands Ruby and Rails, rather than expect a properly integrated IDE experience. I have tried all the IDEs that I could get my hands on and none of them are a proper IDE in native interpretation mode because the interpretor, unlike JRuby, isn't integrated into the platform.
With a really good text editor that understands RoR (e.g. textmate), it helps with the coding side, the actual code entry, and you run and debug as a separate task. With an IDE you expect coding, code completion, debugging, object inspection, etc to be integrated.
The blunt answer is that if you are looking for an IDE experience in Ruby that matches C, Java or VB, you will be disappointed. None of them, in my experience, come close to this. But one is usably close: Netbeans.
The IDE with the most promise was 3rdRail. Back when Borland launched it, nothing came close to 3rdRail and it was a typically brilliant, developer-centric Borland experience. 3rdRail understood Ruby as well as Rails. It wasn't perfect, but it was better than anything else out there by a mile. Like all Borland products, it worked, its debugging was exceptionally good and it was a completely integrated project experience, from code entry to code deployment.
Then Embarcadero bought out the Borland development tools and it all went West rapidly. Neither JBuilder nor 3rdRail were able to run on my Linux platform (I only use Linux). The problem was the licensing system. Worse than this, both 3rdRail and JBuilder were very tightly tied to specific JDKs and its own environment. This may seem okay to start with, but when you have software that has a long life, projects that are large and have a long life and you need to have proper maintenance, update your software to later versions of libraries, runtimes, etc, then this starts to break what the licensing system hadn't already broken.
Having tried several very expensive upgrades in both JBuilder and 3rdRail, we concluded that we needed to simply write off the licenses that we had purchased and ditch both platforms as being unstable, unusable and unmaintainable. Which is a pity because if it worked, 3rdRail would be the leader by far.
Also, it was very clear that the support for 3rdRail was almost non-existent by Embarcadero. Despite having expensive software licenses, our real world experience of support was that it was fellow frustrated users trying to help one another on the rather poor forums that Embarcadero operate with few real support resources available from the company itself.
So, having conducted tests of other platforms, the winner emerged as Netbeans for Rails development. It's not brilliant in that it has limited understanding of Ruby the language, limited support for features such as code completion and its debugging isn't anywhere near what it should be, but it is a working, integrated IDE stack that does take you from code development through to WAR deployment and it is project aware. More importantly it is multi-JDK capable, has a flexible environment configuration allowing you to use 3rd party libraries freely and its GEM system works well, with good GEM management and repository integration.
Netbeans for Ruby and Rails proved to be the most comprehensive, integrated, functional and complete development stack that works across multiple platforms but in particular, it is stable, reliable and complete on Linux.
We use Rails with Google's GWT (SmartGWT). For this mix I strongly recommend Eclipse for the GWT (client) side and Netbeans for the Rails back end.
Netbeans can't compete with the tightness of integration with Eclipse that GWT has. Eclipse is simply the better product for the client-side development. However, the various Eclipse for Rails solutions don't have a patch on Netbeans in terms of the complete IDE experience.
So if you are using WEB2 technologies with Ruby on Rails, then I would recommend using both Eclipse and Netbeans. Play to the strengths of both IDEs and you won't regret it.