views:

162

answers:

1

IRb is pretty plain compared to bpython, even when using wirble.

Is there any ruby equivalent of bpython?

+7  A: 

You can extend irb to achieve all of bpython's functionality and more with the right gems:

  • wirble: for syntax highlightning (as you already know)
  • bond: for more advanced autocompletion
  • utilitybelt: for pastebin-like commands
  • sketches: for editing and evaluating code easily
  • boson: command framework for creating libraries of commands to be loaded as needed
  • hirb: framework for associating views per class

For more gems, see here.

Ok, now someone should write a gem that pulls all these in and loads them nicely with irb. Any takers? :-)
perimosocordiae
see this for your request, user83510: http://stackoverflow.com/questions/3884715/what-alternatives-to-irb-are-there
DGM