-
Tutorial
In this tutorial, you will create a Ruby on Rails application that stores your favorite recipes in a PostgreSQL database then displays them with a React frontend. When you are finished, you will be able to create, vie...
•
By
Chuks Opia
Ruby
Ruby on Rails
React
Development
Applications
PostgreSQL
Programming Project
-
Tutorial
Ruby on Rails is one of the most popular application stacks for developers looking to create sites and web apps. Using rbenv will provide you with a solid environment for developing your Ruby on Rails applications as ...
•
By
Brian Hogan, Lisa Tagliaferri
Ruby
Ruby on Rails
Ubuntu 18.04
-
Tutorial
This tutorial helps with setting up Ruby on Rails with Postgres.
•
By
Alex Ghiculescu
Ruby on Rails
PostgreSQL
Ruby
-
An array is a data structure that represents a list of values, called elements. Arrays let you store multiple values in a single variable. This can condense and organize your code, making it more readable and maintain...
•
By
Brian Hogan
Ruby
Development
-
Tutorial
Ruby on Rails is one of the most popular application stacks for developers looking to create sites and web apps. You can easily install Ruby and Rails with the command-line tool rbenv. Using rbenv will provide you wit...
•
By
Lisa Tagliaferri
Ruby on Rails
Ruby
Ubuntu
Ubuntu 16.04
-
Tutorial
When you are ready to deploy your Ruby on Rails application, there are many valid setups to consider. This tutorial will help you deploy the production environment of your Ruby on Rails application, with PostgreSQL as...
•
By
Mitchell Anicas
Deployment
Ruby on Rails
Nginx
PostgreSQL
Ruby
Ubuntu
-
Arrays let you represent lists of data in your programs. Once you have data in an array, you can sort it, remove duplicates, reverse its order, extract sections of the array, or search through arrays for specific data...
•
By
Brian Hogan
Ruby
Development
-
Tutorial
Ruby on Rails uses sqlite3 as its default database, which works great in many cases, but may not be sufficient for your application. If your application requires the scalability, centralization, and control (or any ot...
•
By
Mitchell Anicas
Ruby on Rails
PostgreSQL
Ruby
Ubuntu
-
Tutorial
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. Thi...
•
By
Mitchell Anicas
Ruby on Rails
Ruby
Ubuntu
-
Tutorial
GitLab provides a simple but powerful web based interface to your Git repositories a la GitHub. Only you can host it on your own cloud server, control access as you see fit, and repo size is limited only by how much s...
•
By
Nik van der Ploeg
Git
Applications
Ruby
Ubuntu
-
Rails is a web application framework written in Ruby. It takes an opinionated approach to application development, assuming that set conventions will best serve developers in cases where there is a common end goal.
In...
•
By
Kathleen Juell
Ruby
Ruby on Rails
Development
-
Tutorial
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. On...
•
By
Timothy Nolan
Ruby
Ruby on Rails
Development
-
Tutorial
Ruby on Rails uses sqlite3 as its default database, which works great in many cases, but may not be sufficient for your application. If your application requires the scalability, centralization, and control (or any ot...
•
By
Mitchell Anicas
MySQL
Ruby on Rails
Ruby
Ubuntu
-
Tutorial
Ruby on Rails is one of the most popular application stacks for developers looking to create sites and web apps. The Ruby programming language, combined with the Rails development framework, makes app development simp...
•
By
Lisa Tagliaferri
Ruby
Ruby on Rails
Ubuntu
Ubuntu 16.04
-
Rails is a web application framework written in Ruby that offers developers an opinionated approach to application development. As you add complexity to your Rails applications, you will likely work with multiple mode...
•
By
Kathleen Juell
Ruby
Ruby on Rails
Development
-
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 ...
•
By
Brian Hogan
Ruby
Development
-
Tutorial
This tutorial will take you through the Ruby and Rails installation process and set up via RVM. The command-line tool RVM will let you manage and work with multiple Ruby environments and allow you to switch between th...
•
By
Lisa Tagliaferri
Ruby
Ruby on Rails
Ubuntu 18.04
-
Tutorial
A PostgreSQL database is a robust and flexible choice for your Ruby on Rails application. In this tutorial, you will set up a Ruby on Rails development environment connected to a PostgreSQL database on an Ubuntu 18.04...
•
By
Mitchell Anicas, Timothy Nolan
Ruby on Rails
PostgreSQL
Databases
Applications
Ruby
Ubuntu 18.04
Ubuntu
Open Source
-
A string is a sequence of one or more characters that may consist of letters, numbers, or symbols. In this tutorial, you'll learn how to work with strings in Ruby. You'll create strings, display them on the screen, st...
•
By
Brian Hogan
Ruby
Development
-
Ruby strings have many built-in methods that make it easy to modify and manipulate text, a common task in many programs. In this tutorial, you'll use string methods to determine the length of a string, index and split...
•
By
Brian Hogan
Ruby
Development