Ruby

How To Install Ruby on Rails with rbenv on macOS — step-by-step Programming tutorial on Progressive Robot

How To Install Ruby on Rails with rbenv on macOS

In this tutorial, you will use rbenv to install and set up Ruby on Rails on your local macOS machine. Ruby on Rails is one of the most popular application stacks for developers looking to create sites and web apps. One way to install Ruby and Rails is with the command-line tool rbenv. Using rbenv will provide you with a well-controlled and robust environment for developing your Ruby on Rails applications, allowing you to easily switch the version of Ruby for your entire team when needed.

Read more
How To Use Comments in Ruby — step-by-step Programming tutorial on Progressive Robot

How To Use Comments in Ruby

Comments are lines in computer programs that are ignored by compilers and interpreters. You can use comments to make your programs easier for other programmers to understand by providing more context or explanation what each part of a program is doing. In this tutorial, we will look at how to use comments in Ruby programs to leave notes, as well as how to use them as a debugging tool.

Read more
How To Write Your First Ruby Program — step-by-step Programming tutorial on Progressive Robot

How To Write Your First Ruby Program

The “Hello, World!” program is a classic and time-honored tradition in computer programming. It’s a simple and complete first program for beginners, and it’s a good way to make sure your environment is properly configured. This tutorial will walk you through creating this program in Ruby.

Read more
How To Install Ruby on Rails with rbenv on Ubuntu 14.04 — step-by-step Linux tutorial on Progressive Robot

How To Install Ruby on Rails with rbenv on Ubuntu 14.04

Ruby on Rails is an extremely popular open-source web framework that provides a great way to write web applications with Ruby. This tutorial will show you how to install Ruby on Rails on Ubuntu 14.04, using rbenv. This will provide you with a solid environment for…

Read more
How To Use IRB to Explore Ruby — step-by-step Programming tutorial on Progressive Robot

How To Use IRB to Explore Ruby

IRB, short for Interactive Ruby, is a REPL (read-eval-print loop) which serves as a quick way to explore the Ruby programming language and try out code without creating a file. In this tutorial, you’ll use IRB to run some code, inspect its output, bring in external libraries, and customize your IRB session.

Read more
CHAT