Learn Ruby Free

Learnrubyonline.org is a free interactive Ruby tutorial for people who want to learn Ruby, fast. Learn Ruby, a flexible language used to create sites like Codecademy. Ruby is a powerful yet beginner-friendly language used for professional web apps all over the world. Discover Ruby arrays - a fundamental pillar of Ruby. If you just want the bottom line (the road map to learn Ruby) and you don’t wish to read the entire article then go to the “Bottom Line” section at the end of the article. Start Learning Ruby online for Free from Scratch Codecademy. Codecademy is the first free online outlet where beginners can start learning Ruby from scratch. Joining Codecademy is pretty simple; just register using your email and you’re ready to go. Sep 12, 2017  Learning Ruby: From Zero to Hero “Ruby is simple in appearance, but is very complex inside, just like our human body.” — Matz, creator of the Ruby programming language. Why learn Ruby? For me, the first reason is that it’s a beautiful language. It’s natural to code and it. Ruby Tutorial By Satish Talim. RubyLearning.com is a thorough collection of Ruby Study Notes for those who are new to the Ruby programming language and in search of a solid introduction to Ruby's concepts and constructs. Speed up your Ruby programming learning process by joining 1000s of other would-be Ruby developers around the globe at the Online RubyLearning Class. Learn Ruby, one of today's most beautiful, artful and yet handy and practical programming languages on-the-go for FREE! Compete and collaborate with your fellow SoloLearners, while surfing through short lessons and fun quizzes. Practice writing Ruby code within the. (If you do not have Ruby on your computer install it before you get started.) Interactive Ruby. Ruby comes with a program that will show the results of any Ruby statements you feed it. Playing with Ruby code in interactive sessions like this is a terrific way to learn the language. Open up IRB (which stands for Interactive Ruby).

by TK

“Ruby is simple in appearance, but is very complex inside, just like our human body.” — Matz, creator of the Ruby programming language

Why learn Ruby?

For me, the first reason is that it’s a beautiful language. It’s natural to code and it always expresses my thoughts.

The second — and main — reason is Rails: the same framework that Twitter, Basecamp, Airbnb, Github, and so many companies use.

Introduction/History

Learn

Ruby is “A dynamic, open source programming language with a focus on simplicity and productivity. It has an elegant syntax that is natural to read and easy to write.” — ruby-lang.org

Let’s get started with some basics!

Variables

You can think about a variable as a word that stores a value. Simple as that.

In Ruby it’s easy to define a variable and set a value to it. Imagine you want to store the number 1 in a variable called one. Let’s do it!

Learn Ruby Online

How simple was that? You just assigned the value 1 to a variable called one.

You can assign a value to whatever variable you want. In the example above, a two variable stores an integer of 2 and some_number stores 10,000.

Besides integers, we can also use booleans (true/false), strings, symbols, float, and other data types.

Conditional Statements: Control Flow

Conditional statements evaluate true or false. If something is true, it executes what’s inside the statement. For example:

2 is greater than 1, so the puts code is executed.

This else statement will be executed when the if expression is false:

1 is not greater than 2, so the code inside the else statement will be executed.

There’s also the elsif statement. You can use it like this:

One way I really like to write Ruby is to use an if statement after the code to be executed:

It is so beautiful and natural. It is idiomatic Ruby.

Looping/Iterator

In Ruby we can iterate in so many different forms. I’ll talk about three iterators: while, for and each.

While looping: As long as the statement is true, the code inside the block will be executed. So this code will print the number from 1 to 10:

For looping: You pass the variable num to the block and the for statement will iterate it for you. This code will print the same as while code: from 1 to 10:

Each iterator: I really like the each iterator. For an array of values, it’ll iterate one by one, passing the variable to the block:

You may be asking what the difference is between the each iterator and for looping. The main difference is that the each iterator only maintains the variable inside the iteration block, whereas for looping allows the variable to live on outside the block.

Array: Collection/List/Data Structure

Imagine you want to store the integer 1 in a variable. But maybe now you want to store 2. And 3, 4, 5 …

Do I have a way to store all the integers that I want, but not in millions of variables? Ruby has an answer!

Array is a collection that can be used to store a list of values (like these integers). So let’s use it!

It is really simple. We created an array and stored it in my_integer.

You may be asking, “How can I get a value from this array?” Great question. Arrays have a concept called index. The first element gets the index 0 (zero). The second gets 1, and so on. You get the idea!

Using the Ruby syntax, it’s simple to understand:

Imagine you want to store strings instead of integers, like a list of your relatives’ names. Mine would be something like this:

Works the same way as integers. Nice!

We just learned how array indices works. Now let’s add elements to the array data structure (items to the list).

The most common methods to add a new value to an array are push and <<.

Push is super simple! You just need to pass the element (The Effective Engineer) as the push parameter:

The << method is just slightly different:

You may ask, “But it doesn’t use the dot notation like other methods do. How could it be a method?” Nice question! Writing this:

…is similar to writing this:

Ruby is so great, huh?

Well, enough arrays. Let’s talk about another data structure.

Hash: Key-Value Data Structure/Dictionary Collection

We know that arrays are indexed with numbers. But what if we don’t want to use numbers as indices? Some data structures can use numeric, string, or other types of indices. The hash data structure is one of them.

Hash is a collection of key-value pairs. It looks like this:

The key is the index pointing to the value. How do we access the hash value? Using the key!

Here’s a hash about me. My name, nickname, and nationality are the hash’s keys.

In the above example I printed a phrase about me using all the values stored in the hash.

Another cool thing about hashes is that we can use anything as the value. I’ll add the key “age” and my real integer age (24).

Let’s learn how to add elements to a hash. The key pointing to a value is a big part of what hash is — and the same goes for when we want to add elements to it.

We just need to assign a value to a hash key. Nothing complicated here, right?

Iteration: Looping Through Data Structures

The array iteration is very simple. Ruby developers commonly use the each iterator. Let’s do it:

The each iterator works by passing array elements as parameters in the block. In the above example, we print each element.

For hash data structure, we can also use the each iterator by passing two parameters to the block: the key and the value. Here’s an example:

We named the two parameters as key and value, but it’s not necessary. We can name them anything:

You can see we used attribute as a parameter for the hash key and it works properly. Great!

Classes & Objects

As an object oriented programming language, Ruby uses the concepts of class and object.

“Class” is a way to define objects. In the real world there are many objects of the same type. Like vehicles, dogs, bikes. Each vehicle has similar components (wheels, doors, engine).

“Objects” have two main characteristics: data and behavior. Vehicles have data like number of wheels and number of doors. They also have behavior like accelerating and stopping.

In object oriented programming we call data “attributes” and behavior “methods.”

Data = Attributes

Behavior = Methods

Ruby Object Oriented Programming Mode: On

Let’s understand Ruby syntax for classes:

We define Vehicle with class statement and finish with end. Easy!

And objects are instances of a class. We create an instance by calling the .new method.

Here vehicle is an object (or instance) of the class Vehicle.

Our vehicle class will have 4 attributes: Wheels, type of tank, seating capacity, and maximum velocity.

Let’s define our class Vehicle to receive data and instantiate it.

We use the initialize method. We call it a constructor method so when we create the vehicle object, we can define its attributes.

Imagine that you love the Tesla Model S and want to create this kind of object. It has 4 wheels. Its tank type is electric energy. It has space for 5 seats and a maximum velocity is 250km/hour (155 mph). Let’s create the object tesla_model_s! :)

4 wheels + electric tank + 5 seats + 250km/hour maximum speed = tesla_model_s.

We’ve set the Tesla’s attributes. But how do we access them?

We send a message to the object asking about them. We call it a method. It’s the object’s behavior. Let’s implement it!

This is an implementation of two methods: number_of_wheels and set_number_of_wheels. We call it “getter” and “setter.” First we get the attribute value, and second, we set a value for the attribute.

In Ruby, we can do that without methods using attr_reader, attr_writer and attr_accessor. Let’s see it with code!

Ruby
  • attr_reader: implements the getter method
  • attr_writer: implements the setter method
  • attr_accessor: implements both methods

So now we’ve learned how to get attribute values, implement the getter and setter methods, and use attr (reader, writer, and accessor).

We can also use methods to do other things — like a “make_noise” method. Let’s see it!

When we call this method, it just returns a string “VRRRRUUUUM”.

Encapsulation: Hiding Information

Encapsulation is a way to restrict direct access to objects’ data and methods. At the same time it facilitates operation on that data (objects’ methods).

Encapsulation can be used to hide data members and members function…Encapsulation means that the internal representation of an object is generally hidden from view outside of the object’s definition.
— Wikipedia

So all internal representation of an object is hidden from the outside, only the object can interact with its internal data.

In Ruby we use methods to directly access data. Let’s see an example:

We just implemented this Person class. And as we’ve learned, to create the object person, we use the new method and pass the parameters.

So I created me! :) The tk object! Passing my name and my age. But how can I access this information? My first attempt is to call the name and age methods.

We can’t do it! We didn’t implement the name (and the age) method.

Remember when I said “In Ruby we use methods to directly access data?” To access the tk name and age we need to implement those methods on our Person class.

Now we can directly access this information. With encapsulation we can ensure that the object (tk in this case) is only allowed to access name and age. The internal representation of the object is hidden from the outside.

Inheritance: behaviors and characteristics

Certain objects have something in common. Behavior and characteristics.

For example, I inherited some characteristics and behaviors from my father — like his eyes and hair. And behaviors like impatience and introversion.

In object oriented programming, classes can inherit common characteristics (data) and behavior (methods) from another class.

Learn To Code Ruby

Let’s see another example and implement it in Ruby.

Imagine a car. Number of wheels, seating capacity and maximum velocity are all attributes of a car.

Our Car class implemented! :)

Instantiated, we can use all methods created! Nice!

In Ruby, we use the < operator to show a class inherits from another. An ElectricCar class can inherit from our Car class.

Simple as that! We don’t need to implement the initialize method and any other method, because this class already has it (inherited from the Car class). Let’s prove it!

Beautiful!

Learn Ruby Coding Free

Module: A Toolbox

Learn Ruby Programming

We can think of a module as a toolbox that contains a set of constants and methods.

An example of a Ruby module is Math. We can access the constant PI:

And the .sqrt method:

And we can implement our own module and use it in classes. We have a RunnerAthlete class:

And implement a module Skill to have the average_speed method.

How do we add the module to our classes so it has this behavior (average_speed method)? We just include it!

Learn

See the “include Skill”! And now we can use this method in our instance of RunnerAthlete class.

Yay! To finish modules, we need to understand the following:

  • A module can have no instances.
  • A module can have no subclasses.
  • A module is defined by module…end.

Wrapping Up!

We learned A LOT of things here!

  • How Ruby variables work
  • How Ruby conditional statements work
  • How Ruby looping & iterators work
  • Array: Collection | List
  • Hash: Key-Value Collection
  • How we can iterate through this data structures
  • Objects & Classes
  • Attributes as objects’ data
  • Methods as objects’ behavior
  • Using Ruby getters and setters
  • Encapsulation: hiding information
  • Inheritance: behaviors and characteristics
  • Modules: a toolbox

That’s it

Congrats! You completed this dense piece of content about Ruby! We learned a lot here. Hope you liked it.

If you want a complete Ruby course, learn real-world coding skills and build projects, try One Month Ruby Bootcamp. See you there ☺

Have fun, keep learning, and always keep coding!

My Twitter & Github. ☺