From 2e925ad6805bb6b4b8d37685b479e50800e74a99 Mon Sep 17 00:00:00 2001 From: Michael Kane Date: Wed, 5 Dec 2018 16:52:08 -0600 Subject: [PATCH] Add text to 'IRB' section. (#25347) Text added (line 55): "Interactive Ruby Shell is a great way to explore the Ruby language and quickly test scripts." --- guide/english/ruby/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/ruby/index.md b/guide/english/ruby/index.md index 3d06b35cf6..df175b2edb 100644 --- a/guide/english/ruby/index.md +++ b/guide/english/ruby/index.md @@ -52,7 +52,7 @@ To know about how to install Ruby through package managers, installers and sourc ## IRB -IRB stands for Interactive Ruby Shell. The abbreviation irb comes from the fact that the filename extension for Ruby is ".rb", although interactive Ruby files do not have an extension of ".irb". The program is launched from a command line and allows the execution of Ruby commands with an immediate response, experimenting in real-time. It features command 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. It was developed by Keiju Ishitsuka. +IRB stands for Interactive Ruby Shell. The abbreviation irb comes from the fact that the filename extension for Ruby is ".rb", although interactive Ruby files do not have an extension of ".irb". The program is launched from a command line and allows the execution of Ruby commands with an immediate response, experimenting in real-time. It features command 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. Interactive Ruby Shell is a great way to explore the Ruby language and quickly test scripts. It was developed by Keiju Ishitsuka. ```shell irb