In the python world, there are a number of alternative python interpreters that add cool additional features. One particularly useful example is bpython, which adds dynamic syntax highlighting, automatically pulls documentation, and displays live autocomplete information. In the Ruby world, I have yet to uncover any projects which add to the basic IRB interpreter even a subset of these features. Am I just not looking hard enough, or is this just something the Ruby community is lacking?
|
What a coincidence. Rubyflow just yesterday announced the irbtools gem, which is a meta-gem containing lots of cool irb enhancement gems. It contains: Features (pasted from the page):
There are nice screenshots on the irbtools page. One nice thing about it is that each of the utilities can stand on its own, in case you just want to cherry-pick one feature. 2013 Update Since I wrote this, Pry has become the defacto standard IRB replacement. It doesn't do as much as
You can also browse Ruby documentation, issue shell commands, and if you're a Rails user, you can use the There's ample documentation--there are a bunch of screencasts including a Railscast. It's definitely worth looking into. |
|||||||||||||
|
|
Use Pry: http://pry.github.com Let's you:
A tonne more great and original features |
||||
|
|
|
There's http://github.com/alloy/dietrb. |
|||||
|
|
I've never heard of a (popular) alternative to IRB, but there certainly are several useful gems that make the IRB experience a lot nicer:
Edit I forgot Hirb, which is very useful for e.g. showing the results of an ActiveRecord query in a Rails console. |
|||
|
|
|
There's not much in the area of alternatives to irb, but there are a couple of gems that add useful features to irb. Most notably wirble, which, among other things, gives you colored output (not input though) and a history that goes beyond the current session. |
||||
|
Check out ripl, a modular irb alternative which is designed to be extendable. You may also get some answers from Anything like bpython for Ruby?. |
||||
|
|