Interactive Ruby Shell

This is an old revision of this page, as edited by James084 (talk | contribs) at 13:19, 5 January 2006 (promt becomes prompt). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Interactive Ruby Shell (irb) is a shell for programming in the object-oriented scripting language Ruby. irb is run from the command line and allows the programmer to experiment with code in real time. It features command-line history, line editing capabilities, and job control, and is able to communicate directly as a shell script over the Internet and interact with a live server.

irb (Interactive Ruby) was developed by Keiju Ishitsuka. It allows you to enter the commands at the prompt and have the interpreter respond as if you were executing a program. irb is a useful way to explore Ruby.

irb [ options ] [ programfile ] [ argument... ]