Sunday, November 22, 2015

Ruby - Environment Setup

Local Environment Setup

If you are still willing to set up your environment for Ruby programming language, then let's proceed. This tutorial will teach you all the important topics related to environment setup. I would recommend to go through the following topics first and then proceed further:

Popular Ruby Editors:

To write your Ruby programs, you will need an editor:
  • If you are working on Windows machine, then you can use any simple text editor like Notepad or Edit plus.
  • VIM (Vi IMproved) is very simple text editor. This is available on almost all Unix machines and now Windows as well. Otherwise, your can use your favorite vi editor to write Ruby programs.
  • RubyWin is a Ruby Integrated Development Environment (IDE) for Windows.
  • Ruby Development Environment (RDE) is also very good IDE for windows users.

Interactive Ruby (IRb):

Interactive Ruby (IRb) provides a shell for experimentation. Within the IRb shell, you can immediately view expression results, line by line.
This tool comes along with Ruby installation so you have nothing to do extra to have IRb working.
Just type irb at your command prompt and an Interactive Ruby Session will start as given below:
$irb
irb 0.6.1(99/09/16)
irb(main):001:0> def hello
irb(main):002:1> out = "Hello World"
irb(main):003:1> puts out
irb(main):004:1> end
nil
irb(main):005:0> hello
Hello World
nil
irb(main):006:0>
Do not worry about what I did here. You will learn about all these steps in subsequent chapters.

What is Next?

I assume now you have a working Ruby Environment and you are ready to write first Ruby Programs. Next chapter will teach you how to write Ruby programs.

No comments:

Post a Comment