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
A Comparison of (Rack) Web Servers for Ruby Web Applications — step-by-step Programming tutorial on Progressive Robot

A Comparison of (Rack) Web Servers for Ruby Web Applications

In this the cloud provider article, we are going to compare various popular web servers that power Ruby based web applications. However before diving in, we will provide an introduction to the mechanics behind how the process mentioned above works as we get familiar with the Rack and middleware collection.

Read more
CHAT