Ruby
How To Use ApacheBench To Do Load Testing on an Ubuntu 13.10 VPS
Tutorials
Ruby
Server Optimization
System Tools
Ubuntu
Introduction> Introduction # Load testing is a good idea before any deployment. It’s nice to quickly establish a best-case scenario for a project before running more detailed tests down the road.
How To Install Ruby on Rails with RVM on Ubuntu 16.04
Tutorials
Ruby
Ruby on Rails
Ubuntu
Ubuntu 16.04
Introduction> Introduction # 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 simple.
How To Install Ruby on Rails on CentOS 6
Tutorials
CentOS
Ruby
Ruby on Rails
Status: Deprecated> Status: Deprecated # This article covers a version of CentOS that is no longer supported. If you are currently operating a server running CentOS 6, we highly recommend upgrading or migrating to a supported version of CentOS.
How To Use MySQL with Your Ruby on Rails Application on Ubuntu 14.04
Tutorials
MySQL
Ruby
Ruby on Rails
Ubuntu
Introduction> Introduction # 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 other feature) that a client/server SQL database, such as PostgreSQL or MySQL, you will need to perform a few additional steps to get it up and running.
How To Set Up Ruby on Rails with Postgres
Tutorials
Development
PostgreSQL
Ruby
Ruby on Rails
Status: Deprecated> Status: Deprecated # This article is deprecated and no longer maintained.
Reason> Reason # We now provide up to date tutorials for using Rails with Postgres that are tailored to individual platforms.
How To Install Ruby on Rails with rbenv on Ubuntu 18.04
Tutorials
Ruby
Ruby on Rails
Ubuntu 18.04
Introduction> Introduction # 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 simple.
How To Deploy a Rails App with Puma and Nginx on Ubuntu 14.04
Tutorials
Deployment
Nginx
PostgreSQL
Ruby
Ruby on Rails
Ubuntu
Introduction> Introduction # 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 the database, using Puma and Nginx on Ubuntu 14.
How To Install Ruby on Rails with rbenv on Ubuntu 14.04
Tutorials
Ruby
Ruby on Rails
Ubuntu
Introduction> Introduction # 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.
How To Install Ruby on Rails on CentOS 6 with RVM
Tutorials
CentOS
Ruby
Ruby on Rails
Status: Deprecated> Status: Deprecated # This article covers a version of CentOS that is no longer supported. If you are currently operating a server running CentOS 6, we highly recommend upgrading or migrating to a supported version of CentOS.
How To Deploy Rails Apps Using Unicorn And Nginx on CentOS 6.5
Tutorials
CentOS
Ruby
Ruby on Rails
Status: Deprecated> Status: Deprecated # This article covers a version of CentOS that is no longer supported. If you are currently operating a server running CentOS 6, we highly recommend upgrading or migrating to a supported version of CentOS.
How To Install Ruby on Rails with rbenv on CentOS 7
Tutorials
CentOS
Ruby
Ruby on Rails
Introduction> Introduction # 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 CentOS 7, using rbenv.
How To Use PostgreSQL with Your Ruby on Rails Application on Ubuntu 14.04
Tutorials
PostgreSQL
Ruby
Ruby on Rails
Ubuntu
Introduction> Introduction # 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 other feature) that is provided by a client/server SQL database, such as PostgreSQL or MySQL, you will need to perform a few additional steps to get it up and running.
How To Deploy a Rails App with Passenger and Apache on Ubuntu 14.04
Tutorials
Apache
Ruby
Ruby on Rails
Ubuntu
Introduction> Introduction # In this tutorial, we will demonstrate how to install Phusion Passenger as your Rails-friendly web server, which is easy to install, configure, and maintain. We will integrate it into Apache on Ubuntu 14.
How To Use Array Methods in Ruby
Tutorials
Development
Ruby
Introduction> Introduction # 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.
How To Set Up GitLab As Your Very Own Private GitHub Clone
Tutorials
Applications
Git
Ruby
Ubuntu
Status: Deprecated> Status: Deprecated # This article covers a version of Ubuntu that is no longer supported. If you are currently operate a server running Ubuntu 12.04, we highly recommend upgrading or migrating to a supported version of Ubuntu:
How To Install Ruby on Rails with rbenv on Ubuntu 16.04
Tutorials
Ruby
Ruby on Rails
Ubuntu
Ubuntu 16.04
Introduction> Introduction # 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 simple.
How To Work with Arrays in Ruby
Tutorials
Development
Ruby
Introduction> Introduction # An array is a data structure that represents a list of values, called elements. Arrays let you store multiple values in a single variable. In Ruby, arrays can contain any data type, including numbers, strings, and other Ruby objects.