Ruby Tutorial (original) (raw)

Last Updated : 28 Apr, 2025

Ruby is a object-oriented, reflective, general-purpose, dynamic programming language. Ruby was developed to make it act as a sensible buffer between human programmers and the underlying computing machinery. It is an interpreted scripting language which means most of its implementations execute instructions directly and freely, without previously compiling a program into machine-language instructions. Ruby is used to create web applications of different sorts. It is one of the hot technology at present to create web applications.

Topics:

Features of Ruby

Ruby has many reasons for being popular and in demand. Few of the reasons are mentioned below:

  1. The code written in Ruby is small, elegant and powerful as it has fewer number of lines of code.
  2. Ruby allows simple and fast creation of Web application which results in less hard work.
  3. As Ruby is free of charge that is Ruby is free to copy, use, modify, it allow programmers to make necessary changes as and when required.
  4. Ruby is a dynamic programming language due to which there is no tough rules on how to built in features and it is very close to spoken languages.

Application Areas

Getting Started with Ruby

Ruby is an interpreted, high-level, general-purpose programming language. Ruby is dynamically typed and uses garbage collection. It supports multiple programming paradigms, object-oriented, including procedural and functional programming. Ruby is based on many other languages like Perl, Lisp, Smalltalk, Eiffel and Ada. This language has an elegant syntax that is natural to read and easy to write. Popular Ruby Editors/IDE are below.

Downloading and Installing Ruby In window:

  1. We can download Ruby from rubyInstaller.org Click on any link as your preferred version depending on our Windows for say we can go with WITHOUT DEVKIT versions like Ruby 2.6.4-1 (x64) for Windows(64 bit) and the 2nd link which says Ruby 2.6.4-1 (x86) is for Windows(32 bit) as highlighted below, which is the latest version.
  2. After downloading the file, run the .exe file and follow the instructions to install Ruby on your Windows. Once you installed Ruby with default settings on your Windows, you have to setup environment variable.
  3. Go to Control Panel -> System and Security -> System.
    Then click on Advanced System Setting option then under Advanced tab click on Environment Variables.
  4. Now, we have to Edit the “Path” variable under System variables so that it also contains the path to the Ruby environment. Under the System Variable select the “Path” variable and click on Edit button.
  5. We will see list of different paths, click on New button and then add path where Ruby is installed. By default, Ruby is installed in “C:\Ruby26-x64\bin” (in our case) folder OR “C:\Ruby26-x86\bin”. In case, you have installed Ruby at any other location, then add that in path, for example: if you have installed Ruby on other drive then go to that driver and locate the Ruby folder then inside the ruby folder a folder called bin will be there so copy the path and include it to System Variable’s Path like SomeDrive:\SomeFolder\RubyXX-xYY\bin
  6. Click on OK, Save the settings and we are done. Now to check whether installation is done correctly, open command prompt and type ruby -v and hit Enter. You will see some output like ruby 2.6.4p104 (2019-08-28 revision 67798) [x64-mingw32](in our case) on the console. It means we have successfully installed Ruby and we are good to go.

Downloading and Installing Ruby In Linux

  1. Go to Application -> Terminal
  2. Type command as below.
    sudo apt install ruby-full
    and press enter and enter your password. Wait for it to complete the download and then it will install Ruby on your machine.
  3. We are done installing Ruby on Linux. Now to check whether installation is done correctly, type ruby -v in the Terminal.If you see some text like ruby 2.6… it means u have successfully installed Ruby on your Linux.

How to Run a Ruby Program ?

puts "Hello World"

`

Hello World

Ruby program to illustrate 'for'

loop using range as expression

i = "Sudo Placements"

using for loop with the range

for a in 1..5 do

puts i

end

`

Output:

Sudo Placements Sudo Placements Sudo Placements Sudo Placements Sudo Placements

Ruby program to illustrate 'while' loop

variable x

x = 4

using while loop

here conditional is x i.e. 4

while x >= 1

statements to be executed

puts "GeeksforGeeks" x = x - 1

while loop ends here

end

`

Output:

GeeksforGeeks GeeksforGeeks GeeksforGeeks GeeksforGeeks

Ruby program to illustrate 'do..while'loop

starting of do..while loop

loop do

puts "GeeksforGeeks"

val = '7'

using boolean expressions

if val == '7' break end

ending of ruby do..while loop

end

`

Ruby program to illustrate 'until' loop

var = 7

using until loop

here do is optional

until var == 11 do

code to be executed

puts var * 10 var = var + 1

here loop ends

end

`

70 80 90 100