Install Ruby On Rails on
Windows 10
We will be setting up a Ruby on Rails development environment on Windows 10.
The reason we’re going to be using Bash on Ubuntu on Windows because it allows you to run Linux on your Windows machine. Most Ruby on Rails tutorials and dependencies work best on Linux, so this allows you to get the best of both worlds. A Windows machine for your day to day work, and a Linux subsystem for Ruby on Rails development.
This only works on 64-bit installations of Windows. This is also in beta, so this won’t be nearly as robust as running a Linux virtual machine, but it can definitely do the basics well enough.
Installing the Windows Subsystem for Linux
Windows 10 allows you to run various Linux operating systems inside of Windows similar to a virtual machine, but natively implemented. We’ll use this to install Ruby and run our Rails apps.
Open Powershell as Administrator and run:
Now open Ubuntu in the Start menu or by running wsl in PowerShell or the command prompt. You’ll be asked to setup a new user for Ubuntu. Remember this password as it’s what you’ll use later on when installing packages with sudo .

Congrats! You’ve now got a Ubuntu terminal on Windows. You’ll use this to run your Rails server and other processes for development.
Installing Ruby
Choose the version of Ruby you want to install:
The first step is to install some dependencies for Ruby.
Next we’re going to be installing Ruby with a version manager called Rbenv.
Installing with rbenv is a simple two step process. First you install rbenv , and then ruby-build : To install Ruby and set the default version, we’ll run the following commands: Confirm the default Ruby version matches the version you just installed.
The last step is to install Bundler
rbenv users need to run rbenv rehash after installing bundler.
Configuring Git
We’ll be using Git for our version control system so we’re going to set it up to match our Github account. If you don’t already have a Github account, make sure to register. It will come in handy for the future.
Replace my name and email address in the following steps with the ones you used for your Github account.
The next step is to take the newly generated SSH key and add it to your Github account. You want to copy and paste the output of the following command and paste it here.
Once you’ve done this, you can check and see if it worked:
You should get a message like this:
Installing Rails
Choose the version of Rails you want to install:
Since Rails ships with so many dependencies these days, we’re going to need to install a Javascript runtime like NodeJS and a package manager called Yarn.
To install NodeJS and Yarn, we’re going to add it using the official repository:
And now, without further adieu:
If you’re using rbenv, you’ll need to run the following command to make the rails executable available:
Now that you’ve installed Rails, you can run the rails -v command to make sure you have everything installed correctly:
If you get a different result for some reason, it means your environment may not be setup properly.
Setting Up MySQL
Rails ships with sqlite3 as the default database. Chances are you won’t want to use it because it’s stored as a simple file on disk. You’ll probably want something more robust like MySQL or PostgreSQL.
There is a lot of documentation on both, so you can just pick one that seems like you’ll be more comfortable with.
If you’re new to Ruby on Rails or databases in general, I strongly recommend setting up PostgreSQL.
If you’re coming from PHP, you may already be familiar with MySQL.
You can install MySQL server and client from the packages in the Ubuntu repository. As part of the installation process, you’ll set the password for the root user. This information will go into your Rails app’s database.yml file in the future.
Installing the libmysqlclient-dev gives you the necessary files to compile the mysql2 gem which is what Rails will use to connect to MySQL when you setup your Rails app.
When you’re finished, you can skip to the Final Steps.
Setting Up PostgreSQL
The easiest way to setup PostgreSQL is to install it on Windows using one of the Windows installers. You’ll be able to run it in Windows and connect to it through Linux.
Pay attention to the username and password you setup during installation of Postgres as you will use this to configure your Rails applications later to login to Postgres when your Rails app runs.
You’ll also need to install the development headers on Ubuntu so you can install the pg gem.
Final Steps
The best place to develop Rails apps on the Windows Subsystem for Linux is to navigate to `/mnt/c`. This is actually the C: drive on Windows and it lets you use Sublime, Atom, VS Code, etc on Windows to edit your Rails application.
And now for the moment of truth. Let’s create your first Rails application:
You can now visit http://localhost:3000 to view your new website!
Now that you’ve got your machine setup, it’s time to start building some Rails applications!
If you received an error that said Access denied for user ‘root’@’localhost’ (using password: NO) then you need to update your config/database.yml file to match the database username and password.
To edit your code in Windows: open up Sublime, Atom, VS Code, or whatever editor your prefer and point them to your folders in C:\code and you’ll be able to safely edit your Rails apps in Windows and run them in Linux!
When you create a new Rails app, you might run into the following error: parent directory is world writable but not sticky.
If you run into this issue, you can run chmod +t -R
/.bundle and that should fix the permissions errors and let you finish the bundle install for your Rails app.
That’s it! Let us know in the comments below if you run into any issues or have any other protips to share!.
How to install Ruby on Rails on Windows 10 with PostgreSQL
Here is our tutorial on how to install Ruby on Rails on Windows 10 using the Windows Subsystem for Linux. This tutorial uses code from a post by Go Rails, which can be found here, with some minor tweaks.
For this installation, we will be installing PostgreSQL as our database, which is great if you run your app on Heroku.
Update: You can now read an updated version of this tutorial by clicking here.
Setting Up Ruby
Installing the Ruby Dependencies:
Install Ruby using rbenv:
To install Git, follow the Go Rails guide here.
Setting up and installing Rails
First install NodeJS:
Now install Rails:
Next we need to install the dependencies for the pg gem, but not PostgreSQL itself:
Once this is complete, download and install PostgreSQL on Windows — not on the Windows Subsystem for Linux. Click Here to download and install the latest version of PostgreSQL.
Follow the instructions and create a new password. Also remember your default username is postgres.
Awesome — Now let’s set up your new Rails app:
Note: In order for PostgreSQL to work, you will need to create your new app outside of the Bash environment.
Here’s an example:
Now open and modify your database.yml file using your favourite text editor. Add your username and password as well as host.
Congrats! Your new app should be up and running on localhost:3000.
Notes:
To navigate to the folder where Ubuntu is installed, follow this path:
Update:
If you installed Ubuntu through the Windows store, or if you are on a newer Windows build, these file paths are now hidden by default. This is to prevent you from using Windows tools to edit these files. However, if you do want to see these files, open up your quick access toolbar and paste this in %userprofile%\AppData\Local\Packages
This should lead you to the right folder: mine looks like this: C:\Users\user-name\AppData\Local\Packages\CanonicalGroupLimited.Ubuntu18.04onWindows_79rhkp1fndgsc\LocalState\rootfs\home
To learn more about this and making these folders visible by default, please Click Here.
To purge or remove the Windows Subsystem for Linux, including your Rails install, open command prompt, not Bash and type:
To learn more about deleting your Bash environment, Click Here.
Update:
If you installed Ubuntu through the Windows store, you can now simply go to add/remove programs as you normally would and uninstall Ubuntu.
Guides.rubyonrails.org
This guide covers getting up and running with Ruby on Rails.
After reading this guide, you will know:
- How to install Rails, create a new Rails application, and connect your application to a database.
- The general layout of a Rails application.
- The basic principles of MVC (Model, View, Controller) and RESTful design.
- How to quickly generate the starting pieces of a Rails application.
Chapters
1 Guide Assumptions
This guide is designed for beginners who want to get started with creating a Rails application from scratch. It does not assume that you have any prior experience with Rails.
Rails is a web application framework running on the Ruby programming language. If you have no prior experience with Ruby, you will find a very steep learning curve diving straight into Rails. There are several curated lists of online resources for learning Ruby:
Be aware that some resources, while still excellent, cover older versions of Ruby, and may not include some syntax that you will see in day-to-day development with Rails.
2 What is Rails?
Rails is a web application development framework written in the Ruby programming language. It is designed to make programming web applications easier by making assumptions about what every developer needs to get started. It allows you to write less code while accomplishing more than many other languages and frameworks. Experienced Rails developers also report that it makes web application development more fun.
Rails is opinionated software. It makes the assumption that there is a «best» way to do things, and it’s designed to encourage that way — and in some cases to discourage alternatives. If you learn «The Rails Way» you’ll probably discover a tremendous increase in productivity. If you persist in bringing old habits from other languages to your Rails development, and trying to use patterns you learned elsewhere, you may have a less happy experience.
The Rails philosophy includes two major guiding principles:
- Don’t Repeat Yourself: DRY is a principle of software development which states that «Every piece of knowledge must have a single, unambiguous, authoritative representation within a system». By not writing the same information over and over again, our code is more maintainable, more extensible, and less buggy.
- Convention Over Configuration: Rails has opinions about the best way to do many things in a web application, and defaults to this set of conventions, rather than require that you specify minutiae through endless configuration files.
3 Creating a New Rails Project
The best way to read this guide is to follow it step by step. All steps are essential to run this example application and no additional code or steps are needed.
By following along with this guide, you’ll create a Rails project called blog , a (very) simple weblog. Before you can start building the application, you need to make sure that you have Rails itself installed.
The examples below use $ to represent your terminal prompt in a UNIX-like OS, though it may have been customized to appear differently. If you are using Windows, your prompt will look something like C:\source_code> .
3.1 Installing Rails
Before you install Rails, you should check to make sure that your system has the proper prerequisites installed. These include:
- Ruby
- SQLite3
3.1.1 Installing Ruby
Open up a command line prompt. On macOS open Terminal.app; on Windows choose «Run» from your Start menu and type cmd.exe . Any commands prefaced with a dollar sign $ should be run in the command line. Verify that you have a current version of Ruby installed:
Rails requires Ruby version 2.7.0 or later. It is preferred to use the latest Ruby version. If the version number returned is less than that number (such as 2.3.7, or 1.8.7), you’ll need to install a fresh copy of Ruby.
To install Rails on Windows, you’ll first need to install Ruby Installer.
For more installation methods for most Operating Systems take a look at ruby-lang.org.
3.1.2 Installing SQLite3
You will also need an installation of the SQLite3 database. Many popular UNIX-like OSes ship with an acceptable version of SQLite3. Others can find installation instructions at the SQLite3 website.
Verify that it is correctly installed and in your load PATH :
The program should report its version.
3.1.3 Installing Rails
To install Rails, use the gem install command provided by RubyGems:
To verify that you have everything installed correctly, you should be able to run the following in a new terminal:
If it says something like «Rails 7.0.0», you are ready to continue.
3.2 Creating the Blog Application
Rails comes with a number of scripts called generators that are designed to make your development life easier by creating everything that’s necessary to start working on a particular task. One of these is the new application generator, which will provide you with the foundation of a fresh Rails application so that you don’t have to write it yourself.
To use this generator, open a terminal, navigate to a directory where you have rights to create files, and run:
This will create a Rails application called Blog in a blog directory and install the gem dependencies that are already mentioned in Gemfile using bundle install .
You can see all of the command line options that the Rails application generator accepts by running rails new —help .
After you create the blog application, switch to its folder:
The blog directory will have a number of generated files and folders that make up the structure of a Rails application. Most of the work in this tutorial will happen in the app folder, but here’s a basic rundown on the function of each of the files and folders that Rails creates by default:
File/Folder | Purpose |
---|---|
app/ | Contains the controllers, models, views, helpers, mailers, channels, jobs, and assets for your application. You’ll focus on this folder for the remainder of this guide. |
bin/ | Contains the rails script that starts your app and can contain other scripts you use to set up, update, deploy, or run your application. |
config/ | Contains configuration for your application’s routes, database, and more. This is covered in more detail in Configuring Rails Applications. |
config.ru | Rack configuration for Rack-based servers used to start the application. For more information about Rack, see the Rack website. |
db/ | Contains your current database schema, as well as the database migrations. |
Gemfile Gemfile.lock |
These files allow you to specify what gem dependencies are needed for your Rails application. These files are used by the Bundler gem. For more information about Bundler, see the Bundler website. |
lib/ | Extended modules for your application. |
log/ | Application log files. |
public/ | Contains static files and compiled assets. When your app is running, this directory will be exposed as-is. |
Rakefile | This file locates and loads tasks that can be run from the command line. The task definitions are defined throughout the components of Rails. Rather than changing Rakefile , you should add your own tasks by adding files to the lib/tasks directory of your application. |
README.md | This is a brief instruction manual for your application. You should edit this file to tell others what your application does, how to set it up, and so on. |
storage/ | Active Storage files for Disk Service. This is covered in Active Storage Overview. |
test/ | Unit tests, fixtures, and other test apparatus. These are covered in Testing Rails Applications. |
tmp/ | Temporary files (like cache and pid files). |
vendor/ | A place for all third-party code. In a typical Rails application this includes vendored gems. |
.gitattributes | This file defines metadata for specific paths in a git repository. This metadata can be used by git and other tools to enhance their behavior. See the gitattributes documentation for more information. |
.gitignore | This file tells git which files (or patterns) it should ignore. See GitHub — Ignoring files for more information about ignoring files. |
.ruby-version | This file contains the default Ruby version. |
4 Hello, Rails!
To begin with, let’s get some text up on screen quickly. To do this, you need to get your Rails application server running.
4.1 Starting up the Web Server
You actually have a functional Rails application already. To see it, you need to start a web server on your development machine. You can do this by running the following command in the blog directory:
If you are using Windows, you have to pass the scripts under the bin folder directly to the Ruby interpreter e.g. ruby bin\rails server .
JavaScript asset compression requires you have a JavaScript runtime available on your system, in the absence of a runtime you will see an execjs error during asset compression. Usually macOS and Windows come with a JavaScript runtime installed. therubyrhino is the recommended runtime for JRuby users and is added by default to the Gemfile in apps generated under JRuby. You can investigate all the supported runtimes at ExecJS.
This will start up Puma, a web server distributed with Rails by default. To see your application in action, open a browser window and navigate to http://localhost:3000. You should see the Rails default information page:
When you want to stop the web server, hit Ctrl+C in the terminal window where it’s running. In the development environment, Rails does not generally require you to restart the server; changes you make in files will be automatically picked up by the server.
The Rails startup page is the smoke test for a new Rails application: it makes sure that you have your software configured correctly enough to serve a page.
4.2 Say «Hello», Rails
To get Rails saying «Hello», you need to create at minimum a route, a controller with an action, and a view. A route maps a request to a controller action. A controller action performs the necessary work to handle the request, and prepares any data for the view. A view displays data in a desired format.
In terms of implementation: Routes are rules written in a Ruby DSL (Domain-Specific Language). Controllers are Ruby classes, and their public methods are actions. And views are templates, usually written in a mixture of HTML and Ruby.
Let’s start by adding a route to our routes file, config/routes.rb , at the top of the Rails.application.routes.draw block:
The route above declares that GET /articles requests are mapped to the index action of ArticlesController .
To create ArticlesController and its index action, we’ll run the controller generator (with the —skip-routes option because we already have an appropriate route):
Rails will create several files for you:
The most important of these is the controller file, app/controllers/articles_controller.rb . Let’s take a look at it:
The index action is empty. When an action does not explicitly render a view (or otherwise trigger an HTTP response), Rails will automatically render a view that matches the name of the controller and action. Convention Over Configuration! Views are located in the app/views directory. So the index action will render app/views/articles/index.html.erb by default.
Let’s open app/views/articles/index.html.erb , and replace its contents with:
If you previously stopped the web server to run the controller generator, restart it with bin/rails server . Now visit http://localhost:3000/articles, and see our text displayed!
4.3 Setting the Application Home Page
At the moment, http://localhost:3000 still displays a page with the Ruby on Rails logo. Let’s display our «Hello, Rails!» text at http://localhost:3000 as well. To do so, we will add a route that maps the root path of our application to the appropriate controller and action.
Let’s open config/routes.rb , and add the following root route to the top of the Rails.application.routes.draw block:
Now we can see our «Hello, Rails!» text when we visit http://localhost:3000, confirming that the root route is also mapped to the index action of ArticlesController .
5 Autoloading
Rails applications do not use require to load application code.
You may have noticed that ArticlesController inherits from ApplicationController , but app/controllers/articles_controller.rb does not have anything like
Application classes and modules are available everywhere, you do not need and should not load anything under app with require . This feature is called autoloading, and you can learn more about it in Autoloading and Reloading Constants.
You only need require calls for two use cases:
- To load files under the lib directory.
- To load gem dependencies that have require: false in the Gemfile .
6 MVC and You
So far, we’ve discussed routes, controllers, actions, and views. All of these are typical pieces of a web application that follows the MVC (Model-View-Controller) pattern. MVC is a design pattern that divides the responsibilities of an application to make it easier to reason about. Rails follows this design pattern by convention.
Since we have a controller and a view to work with, let’s generate the next piece: a model.
6.1 Generating a Model
A model is a Ruby class that is used to represent data. Additionally, models can interact with the application’s database through a feature of Rails called Active Record.
To define a model, we will use the model generator:
Model names are singular, because an instantiated model represents a single data record. To help remember this convention, think of how you would call the model’s constructor: we want to write Article.new(. ) , not Articles.new(. ) .
This will create several files:
The two files we’ll focus on are the migration file ( db/migrate/<timestamp>_create_articles.rb ) and the model file ( app/models/article.rb ).
6.2 Database Migrations
Migrations are used to alter the structure of an application’s database. In Rails applications, migrations are written in Ruby so that they can be database-agnostic.
Let’s take a look at the contents of our new migration file:
The call to create_table specifies how the articles table should be constructed. By default, the create_table method adds an id column as an auto-incrementing primary key. So the first record in the table will have an id of 1, the next record will have an id of 2, and so on.
Inside the block for create_table , two columns are defined: title and body . These were added by the generator because we included them in our generate command ( bin/rails generate model Article title:string body:text ).
On the last line of the block is a call to t.timestamps . This method defines two additional columns named created_at and updated_at . As we will see, Rails will manage these for us, setting the values when we create or update a model object.
Let’s run our migration with the following command:
The command will display output indicating that the table was created:
To learn more about migrations, see Active Record Migrations.
Now we can interact with the table using our model.
6.3 Using a Model to Interact with the Database
To play with our model a bit, we’re going to use a feature of Rails called the console. The console is an interactive coding environment just like irb , but it also automatically loads Rails and our application code.
Let’s launch the console with this command:
You should see an irb prompt like:
At this prompt, we can initialize a new Article object:
It’s important to note that we have only initialized this object. This object is not saved to the database at all. It’s only available in the console at the moment. To save the object to the database, we must call save :
The above output shows an INSERT INTO «articles» . database query. This indicates that the article has been inserted into our table. And if we take a look at the article object again, we see something interesting has happened:
The id , created_at , and updated_at attributes of the object are now set. Rails did this for us when we saved the object.
When we want to fetch this article from the database, we can call find on the model and pass the id as an argument:
And when we want to fetch all articles from the database, we can call all on the model:
This method returns an ActiveRecord::Relation object, which you can think of as a super-powered array.
Models are the final piece of the MVC puzzle. Next, we will connect all of the pieces together.
6.4 Showing a List of Articles
Let’s go back to our controller in app/controllers/articles_controller.rb , and change the index action to fetch all articles from the database:
Controller instance variables can be accessed by the view. That means we can reference @articles in app/views/articles/index.html.erb . Let’s open that file, and replace its contents with:
The above code is a mixture of HTML and ERB. ERB is a templating system that evaluates Ruby code embedded in a document. Here, we can see two types of ERB tags: <% %> and <%= %> . The <% %> tag means «evaluate the enclosed Ruby code.» The <%= %> tag means «evaluate the enclosed Ruby code, and output the value it returns.» Anything you could write in a regular Ruby program can go inside these ERB tags, though it’s usually best to keep the contents of ERB tags short, for readability.
Since we don’t want to output the value returned by @articles.each , we’ve enclosed that code in <% %> . But, since we do want to output the value returned by article.title (for each article), we’ve enclosed that code in <%= %> .
We can see the final result by visiting http://localhost:3000. (Remember that bin/rails server must be running!) Here’s what happens when we do that:
- The browser makes a request: GET http://localhost:3000 .
- Our Rails application receives this request.
- The Rails router maps the root route to the index action of ArticlesController .
- The index action uses the Article model to fetch all articles in the database.
- Rails automatically renders the app/views/articles/index.html.erb view.
- The ERB code in the view is evaluated to output HTML.
- The server sends a response containing the HTML back to the browser.
We’ve connected all the MVC pieces together, and we have our first controller action! Next, we’ll move on to the second action.
7 CRUDit Where CRUDit Is Due
Almost all web applications involve CRUD (Create, Read, Update, and Delete) operations. You may even find that the majority of the work your application does is CRUD. Rails acknowledges this, and provides many features to help simplify code doing CRUD.
Let’s begin exploring these features by adding more functionality to our application.
7.1 Showing a Single Article
We currently have a view that lists all articles in our database. Let’s add a new view that shows the title and body of a single article.
We start by adding a new route that maps to a new controller action (which we will add next). Open config/routes.rb , and insert the last route shown here:
The new route is another get route, but it has something extra in its path: :id . This designates a route parameter. A route parameter captures a segment of the request’s path, and puts that value into the params Hash, which is accessible by the controller action. For example, when handling a request like GET http://localhost:3000/articles/1 , 1 would be captured as the value for :id , which would then be accessible as params[:id] in the show action of ArticlesController .
Let’s add that show action now, below the index action in app/controllers/articles_controller.rb :
The show action calls Article.find (mentioned previously) with the ID captured by the route parameter. The returned article is stored in the @article instance variable, so it is accessible by the view. By default, the show action will render app/views/articles/show.html.erb .
Let’s create app/views/articles/show.html.erb , with the following contents:
Now we can see the article when we visit http://localhost:3000/articles/1!
To finish up, let’s add a convenient way to get to an article’s page. We’ll link each article’s title in app/views/articles/index.html.erb to its page:
7.2 Resourceful Routing
So far, we’ve covered the «R» (Read) of CRUD. We will eventually cover the «C» (Create), «U» (Update), and «D» (Delete). As you might have guessed, we will do so by adding new routes, controller actions, and views. Whenever we have such a combination of routes, controller actions, and views that work together to perform CRUD operations on an entity, we call that entity a resource. For example, in our application, we would say an article is a resource.
Rails provides a routes method named resources that maps all of the conventional routes for a collection of resources, such as articles. So before we proceed to the «C», «U», and «D» sections, let’s replace the two get routes in config/routes.rb with resources :
We can inspect what routes are mapped by running the bin/rails routes command:
The resources method also sets up URL and path helper methods that we can use to keep our code from depending on a specific route configuration. The values in the «Prefix» column above plus a suffix of _url or _path form the names of these helpers. For example, the article_path helper returns «/articles/#
However, we will take this one step further by using the link_to helper. The link_to helper renders a link with its first argument as the link’s text and its second argument as the link’s destination. If we pass a model object as the second argument, link_to will call the appropriate path helper to convert the object to a path. For example, if we pass an article, link_to will call article_path . So app/views/articles/index.html.erb becomes:
7.3 Creating a New Article
Now we move on to the «C» (Create) of CRUD. Typically, in web applications, creating a new resource is a multi-step process. First, the user requests a form to fill out. Then, the user submits the form. If there are no errors, then the resource is created and some kind of confirmation is displayed. Else, the form is redisplayed with error messages, and the process is repeated.
In a Rails application, these steps are conventionally handled by a controller’s new and create actions. Let’s add a typical implementation of these actions to app/controllers/articles_controller.rb , below the show action:
The new action instantiates a new article, but does not save it. This article will be used in the view when building the form. By default, the new action will render app/views/articles/new.html.erb , which we will create next.
The create action instantiates a new article with values for the title and body, and attempts to save it. If the article is saved successfully, the action redirects the browser to the article’s page at «http://localhost:3000/articles/#<@article.id>» . Else, the action redisplays the form by rendering app/views/articles/new.html.erb with status code 422 Unprocessable Entity. The title and body here are dummy values. After we create the form, we will come back and change these.
redirect_to will cause the browser to make a new request, whereas render renders the specified view for the current request. It is important to use redirect_to after mutating the database or application state. Otherwise, if the user refreshes the page, the browser will make the same request, and the mutation will be repeated.
7.3.1 Using a Form Builder
We will use a feature of Rails called a form builder to create our form. Using a form builder, we can write a minimal amount of code to output a form that is fully configured and follows Rails conventions.
Let’s create app/views/articles/new.html.erb with the following contents:
The form_with helper method instantiates a form builder. In the form_with block we call methods like label and text_field on the form builder to output the appropriate form elements.
The resulting output from our form_with call will look like:
To learn more about form builders, see Action View Form Helpers.
7.3.2 Using Strong Parameters
Submitted form data is put into the params Hash, alongside captured route parameters. Thus, the create action can access the submitted title via params[:article][:title] and the submitted body via params[:article][:body] . We could pass these values individually to Article.new , but that would be verbose and possibly error-prone. And it would become worse as we add more fields.
Instead, we will pass a single Hash that contains the values. However, we must still specify what values are allowed in that Hash. Otherwise, a malicious user could potentially submit extra form fields and overwrite private data. In fact, if we pass the unfiltered params[:article] Hash directly to Article.new , Rails will raise a ForbiddenAttributesError to alert us about the problem. So we will use a feature of Rails called Strong Parameters to filter params . Think of it as strong typing for params .
Let’s add a private method to the bottom of app/controllers/articles_controller.rb named article_params that filters params . And let’s change create to use it:
7.3.3 Validations and Displaying Error Messages
As we have seen, creating a resource is a multi-step process. Handling invalid user input is another step of that process. Rails provides a feature called validations to help us deal with invalid user input. Validations are rules that are checked before a model object is saved. If any of the checks fail, the save will be aborted, and appropriate error messages will be added to the errors attribute of the model object.
Let’s add some validations to our model in app/models/article.rb :
The first validation declares that a title value must be present. Because title is a string, this means that the title value must contain at least one non-whitespace character.
The second validation declares that a body value must also be present. Additionally, it declares that the body value must be at least 10 characters long.
You may be wondering where the title and body attributes are defined. Active Record automatically defines model attributes for every table column, so you don’t have to declare those attributes in your model file.
With our validations in place, let’s modify app/views/articles/new.html.erb to display any error messages for title and body :
The full_messages_for method returns an array of user-friendly error messages for a specified attribute. If there are no errors for that attribute, the array will be empty.
To understand how all of this works together, let’s take another look at the new and create controller actions:
When we visit http://localhost:3000/articles/new, the GET /articles/new request is mapped to the new action. The new action does not attempt to save @article . Therefore, validations are not checked, and there will be no error messages.
When we submit the form, the POST /articles request is mapped to the create action. The create action does attempt to save @article . Therefore, validations are checked. If any validation fails, @article will not be saved, and app/views/articles/new.html.erb will be rendered with error messages.
To learn more about validations, see Active Record Validations. To learn more about validation error messages, see Active Record Validations § Working with Validation Errors.
7.3.4 Finishing Up
We can now create an article by visiting http://localhost:3000/articles/new. To finish up, let’s link to that page from the bottom of app/views/articles/index.html.erb :
7.4 Updating an Article
We’ve covered the «CR» of CRUD. Now let’s move on to the «U» (Update). Updating a resource is very similar to creating a resource. They are both multi-step processes. First, the user requests a form to edit the data. Then, the user submits the form. If there are no errors, then the resource is updated. Else, the form is redisplayed with error messages, and the process is repeated.
These steps are conventionally handled by a controller’s edit and update actions. Let’s add a typical implementation of these actions to app/controllers/articles_controller.rb , below the create action:
Notice how the edit and update actions resemble the new and create actions.
The edit action fetches the article from the database, and stores it in @article so that it can be used when building the form. By default, the edit action will render app/views/articles/edit.html.erb .
The update action (re-)fetches the article from the database, and attempts to update it with the submitted form data filtered by article_params . If no validations fail and the update is successful, the action redirects the browser to the article’s page. Else, the action redisplays the form — with error messages — by rendering app/views/articles/edit.html.erb .
7.4.1 Using Partials to Share View Code
Our edit form will look the same as our new form. Even the code will be the same, thanks to the Rails form builder and resourceful routing. The form builder automatically configures the form to make the appropriate kind of request, based on whether the model object has been previously saved.
Because the code will be the same, we’re going to factor it out into a shared view called a partial. Let’s create app/views/articles/_form.html.erb with the following contents:
The above code is the same as our form in app/views/articles/new.html.erb , except that all occurrences of @article have been replaced with article . Because partials are shared code, it is best practice that they do not depend on specific instance variables set by a controller action. Instead, we will pass the article to the partial as a local variable.
Let’s update app/views/articles/new.html.erb to use the partial via render :
A partial’s filename must be prefixed with an underscore, e.g. _form.html.erb . But when rendering, it is referenced without the underscore, e.g. render «form» .
And now, let’s create a very similar app/views/articles/edit.html.erb :
7.4.2 Finishing Up
We can now update an article by visiting its edit page, e.g. http://localhost:3000/articles/1/edit. To finish up, let’s link to the edit page from the bottom of app/views/articles/show.html.erb :
7.5 Deleting an Article
Finally, we arrive at the «D» (Delete) of CRUD. Deleting a resource is a simpler process than creating or updating. It only requires a route and a controller action. And our resourceful routing ( resources :articles ) already provides the route, which maps DELETE /articles/:id requests to the destroy action of ArticlesController .
So, let’s add a typical destroy action to app/controllers/articles_controller.rb , below the update action:
The destroy action fetches the article from the database, and calls destroy on it. Then, it redirects the browser to the root path with status code 303 See Other.
We have chosen to redirect to the root path because that is our main access point for articles. But, in other circumstances, you might choose to redirect to e.g. articles_path .
Now let’s add a link at the bottom of app/views/articles/show.html.erb so that we can delete an article from its own page:
In the above code, we use the data option to set the data-turbo-method and data-turbo-confirm HTML attributes of the «Destroy» link. Both of these attributes hook into Turbo, which is included by default in fresh Rails applications. data-turbo-method=»delete» will cause the link to make a DELETE request instead of a GET request. data-turbo-confirm=»Are you sure?» will cause a confirmation dialog to appear when the link is clicked. If the user cancels the dialog, the request will be aborted.
And that’s it! We can now list, show, create, update, and delete articles! InCRUDable!
8 Adding a Second Model
It’s time to add a second model to the application. The second model will handle comments on articles.
8.1 Generating a Model
We’re going to see the same generator that we used before when creating the Article model. This time we’ll create a Comment model to hold a reference to an article. Run this command in your terminal:
This command will generate four files:
File | Purpose |
---|---|
db/migrate/20140120201010_create_comments.rb | Migration to create the comments table in your database (your name will include a different timestamp) |
app/models/comment.rb | The Comment model |
test/models/comment_test.rb | Testing harness for the comment model |
test/fixtures/comments.yml | Sample comments for use in testing |
First, take a look at app/models/comment.rb :
This is very similar to the Article model that you saw earlier. The difference is the line belongs_to :article , which sets up an Active Record association. You’ll learn a little about associations in the next section of this guide.
The ( :references ) keyword used in the shell command is a special data type for models. It creates a new column on your database table with the provided model name appended with an _id that can hold integer values. To get a better understanding, analyze the db/schema.rb file after running the migration.
In addition to the model, Rails has also made a migration to create the corresponding database table:
The t.references line creates an integer column called article_id , an index for it, and a foreign key constraint that points to the id column of the articles table. Go ahead and run the migration:
Rails is smart enough to only execute the migrations that have not already been run against the current database, so in this case you will just see:
8.2 Associating Models
Active Record associations let you easily declare the relationship between two models. In the case of comments and articles, you could write out the relationships this way:
- Each comment belongs to one article.
- One article can have many comments.
In fact, this is very close to the syntax that Rails uses to declare this association. You’ve already seen the line of code inside the Comment model (app/models/comment.rb) that makes each comment belong to an Article:
You’ll need to edit app/models/article.rb to add the other side of the association:
These two declarations enable a good bit of automatic behavior. For example, if you have an instance variable @article containing an article, you can retrieve all the comments belonging to that article as an array using @article.comments .
For more information on Active Record associations, see the Active Record Associations guide.
8.3 Adding a Route for Comments
As with the articles controller, we will need to add a route so that Rails knows where we would like to navigate to see comments . Open up the config/routes.rb file again, and edit it as follows:
This creates comments as a nested resource within articles . This is another part of capturing the hierarchical relationship that exists between articles and comments.
For more information on routing, see the Rails Routing guide.
8.4 Generating a Controller
With the model in hand, you can turn your attention to creating a matching controller. Again, we’ll use the same generator we used before:
This creates three files and one empty directory:
File/Directory | Purpose |
---|---|
app/controllers/comments_controller.rb | The Comments controller |
app/views/comments/ | Views of the controller are stored here |
test/controllers/comments_controller_test.rb | The test for the controller |
app/helpers/comments_helper.rb | A view helper file |
Like with any blog, our readers will create their comments directly after reading the article, and once they have added their comment, will be sent back to the article show page to see their comment now listed. Due to this, our CommentsController is there to provide a method to create comments and delete spam comments when they arrive.
So first, we’ll wire up the Article show template ( app/views/articles/show.html.erb ) to let us make a new comment:
This adds a form on the Article show page that creates a new comment by calling the CommentsController create action. The form_with call here uses an array, which will build a nested route, such as /articles/1/comments .
Let’s wire up the create in app/controllers/comments_controller.rb :
You’ll see a bit more complexity here than you did in the controller for articles. That’s a side-effect of the nesting that you’ve set up. Each request for a comment has to keep track of the article to which the comment is attached, thus the initial call to the find method of the Article model to get the article in question.
In addition, the code takes advantage of some of the methods available for an association. We use the create method on @article.comments to create and save the comment. This will automatically link the comment so that it belongs to that particular article.
Once we have made the new comment, we send the user back to the original article using the article_path(@article) helper. As we have already seen, this calls the show action of the ArticlesController which in turn renders the show.html.erb template. This is where we want the comment to show, so let’s add that to the app/views/articles/show.html.erb .
Now you can add articles and comments to your blog and have them show up in the right places.
9 Refactoring
Now that we have articles and comments working, take a look at the app/views/articles/show.html.erb template. It is getting long and awkward. We can use partials to clean it up.
9.1 Rendering Partial Collections
First, we will make a comment partial to extract showing all the comments for the article. Create the file app/views/comments/_comment.html.erb and put the following into it:
Then you can change app/views/articles/show.html.erb to look like the following:
This will now render the partial in app/views/comments/_comment.html.erb once for each comment that is in the @article.comments collection. As the render method iterates over the @article.comments collection, it assigns each comment to a local variable named the same as the partial, in this case comment , which is then available in the partial for us to show.
9.2 Rendering a Partial Form
Let us also move that new comment section out to its own partial. Again, you create a file app/views/comments/_form.html.erb containing:
Then you make the app/views/articles/show.html.erb look like the following:
The second render just defines the partial template we want to render, comments/form . Rails is smart enough to spot the forward slash in that string and realize that you want to render the _form.html.erb file in the app/views/comments directory.
The @article object is available to any partials rendered in the view because we defined it as an instance variable.
9.3 Using Concerns
Concerns are a way to make large controllers or models easier to understand and manage. This also has the advantage of reusability when multiple models (or controllers) share the same concerns. Concerns are implemented using modules that contain methods representing a well-defined slice of the functionality that a model or controller is responsible for. In other languages, modules are often known as mixins.
You can use concerns in your controller or model the same way you would use any module. When you first created your app with rails new blog , two folders were created within app/ along with the rest:
In the example below, we will implement a new feature for our blog that would benefit from using a concern. Then, we will create a concern, and refactor the code to use it, making the code more DRY and maintainable.
A blog article might have various statuses — for instance, it might be visible to everyone (i.e. public ), or only visible to the author (i.e. private ). It may also be hidden to all but still retrievable (i.e. archived ). Comments may similarly be hidden or visible. This could be represented using a status column in each model.
First, let’s run the following migrations to add status to Articles and Comments :
And next, let’s update the database with the generated migrations:
To learn more about migrations, see Active Record Migrations.
We also have to permit the :status key as part of the strong parameter, in app/controllers/articles_controller.rb :
and in app/controllers/comments_controller.rb :
Within the article model, after running a migration to add a status column using bin/rails db:migrate command, you would add:
and in the Comment model:
Then, in our index action template ( app/views/articles/index.html.erb ) we would use the archived? method to avoid displaying any article that is archived:
Similarly, in our comment partial view ( app/views/comments/_comment.html.erb ) we would use the archived? method to avoid displaying any comment that is archived:
However, if you look again at our models now, you can see that the logic is duplicated. If in the future we increase the functionality of our blog — to include private messages, for instance — we might find ourselves duplicating the logic yet again. This is where concerns come in handy.
A concern is only responsible for a focused subset of the model’s responsibility; the methods in our concern will all be related to the visibility of a model. Let’s call our new concern (module) Visible . We can create a new file inside app/models/concerns called visible.rb , and store all of the status methods that were duplicated in the models.
We can add our status validation to the concern, but this is slightly more complex as validations are methods called at the class level. The ActiveSupport::Concern (API Guide) gives us a simpler way to include them:
Now, we can remove the duplicated logic from each model and instead include our new Visible module:
and in app/models/comment.rb :
Class methods can also be added to concerns. If we want to display a count of public articles or comments on our main page, we might add a class method to Visible as follows:
Then in the view, you can call it like any class method:
To finish up, we will add a select box to the forms, and let the user select the status when they create a new article or post a new comment. We can also specify the default status as public . In app/views/articles/_form.html.erb , we can add:
and in app/views/comments/_form.html.erb :
10 Deleting Comments
Another important feature of a blog is being able to delete spam comments. To do this, we need to implement a link of some sort in the view and a destroy action in the CommentsController .
So first, let’s add the delete link in the app/views/comments/_comment.html.erb partial:
Clicking this new «Destroy Comment» link will fire off a DELETE /articles/:article_id/comments/:id to our CommentsController , which can then use this to find the comment we want to delete, so let’s add a destroy action to our controller ( app/controllers/comments_controller.rb ):
The destroy action will find the article we are looking at, locate the comment within the @article.comments collection, and then remove it from the database and send us back to the show action for the article.
10.1 Deleting Associated Objects
If you delete an article, its associated comments will also need to be deleted, otherwise they would simply occupy space in the database. Rails allows you to use the dependent option of an association to achieve this. Modify the Article model, app/models/article.rb , as follows:
11 Security
11.1 Basic Authentication
If you were to publish your blog online, anyone would be able to add, edit and delete articles or delete comments.
Rails provides an HTTP authentication system that will work nicely in this situation.
In the ArticlesController we need to have a way to block access to the various actions if the person is not authenticated. Here we can use the Rails http_basic_authenticate_with method, which allows access to the requested action if that method allows it.
To use the authentication system, we specify it at the top of our ArticlesController in app/controllers/articles_controller.rb . In our case, we want the user to be authenticated on every action except index and show , so we write that:
We also want to allow only authenticated users to delete comments, so in the CommentsController ( app/controllers/comments_controller.rb ) we write:
Now if you try to create a new article, you will be greeted with a basic HTTP Authentication challenge:
After entering the correct username and password, you will remain authenticated until a different username and password is required or the browser is closed.
Other authentication methods are available for Rails applications. Two popular authentication add-ons for Rails are the Devise rails engine and the Authlogic gem, along with a number of others.
11.2 Other Security Considerations
Security, especially in web applications, is a broad and detailed area. Security in your Rails application is covered in more depth in the Ruby on Rails Security Guide.
12 What’s Next?
Now that you’ve seen your first Rails application, you should feel free to update it and experiment on your own.
Remember, you don’t have to do everything without help. As you need assistance getting up and running with Rails, feel free to consult these support resources:
- The Ruby on Rails Guides
- The Ruby on Rails mailing list
13 Configuration Gotchas
The easiest way to work with Rails is to store all external data as UTF-8. If you don’t, Ruby libraries and Rails will often be able to convert your native data into UTF-8, but this doesn’t always work reliably, so you’re better off ensuring that all external data is UTF-8.
If you have made a mistake in this area, the most common symptom is a black diamond with a question mark inside appearing in the browser. Another common symptom is characters like «Ã¼» appearing instead of «ü». Rails takes a number of internal steps to mitigate common causes of these problems that can be automatically detected and corrected. However, if you have external data that is not stored as UTF-8, it can occasionally result in these kinds of issues that cannot be automatically detected by Rails and corrected.
Two very common sources of data that are not UTF-8:
- Your text editor: Most text editors (such as TextMate), default to saving files as UTF-8. If your text editor does not, this can result in special characters that you enter in your templates (such as é) to appear as a diamond with a question mark inside in the browser. This also applies to your i18n translation files. Most editors that do not already default to UTF-8 (such as some versions of Dreamweaver) offer a way to change the default to UTF-8. Do so.
- Your database: Rails defaults to converting data from your database into UTF-8 at the boundary. However, if your database is not using UTF-8 internally, it may not be able to store all characters that your users enter. For instance, if your database is using Latin-1 internally, and your user enters a Russian, Hebrew, or Japanese character, the data will be lost forever once it enters the database. If possible, use UTF-8 as the internal storage of your database.
Feedback
You’re encouraged to help improve the quality of this guide.
Please contribute if you see any typos or factual errors. To get started, you can read our documentation contributions section.
You may also find incomplete content or stuff that is not up to date. Please do add any missing documentation for main. Make sure to check Edge Guides first to verify if the issues are already fixed or not on the main branch. Check the Ruby on Rails Guides Guidelines for style and conventions.
If for whatever reason you spot something to fix but cannot patch it yourself, please open an issue.
And last but not least, any kind of discussion regarding Ruby on Rails documentation is very welcome on the official Ruby on Rails Forum.
«Rails», «Ruby on Rails», and the Rails logo are trademarks of David Heinemeier Hansson. All rights reserved.
Installing Ruby on Rails in Windows 10 w/Bash & PostgreSQL
This will focus on installing Ruby, Rails, and getting PostgreSQL to play nicely with Rails and Bash on Windows 10. We will be leveraging the Linux subsystem on Windows 10. This article will not go over installing the Linux Subsystem and getting Bash up and running, there’s already great articles on that very subject. Here is Microsoft’s guide on installing the Linux Subsystem.
Let’s continue on to installing Ruby, Rails, and getting PostgreSQL up and running so that we can use Windows 10 as a development environment for Rails web development.
Installing the pre-requisites
First we need to make sure that are current install of Bash on Windows is update to date.
Pro Tip: If you ever run into an issue or you just need to figure out what command or procedure you need to do for specific tasks in regards to Bash on Windows you can simply Google the question and reference Ubuntu. Bash on Windows is built on top of and in partnership with Ubuntu which makes troubleshooting (Linux specific issues & procedures) quite easy.
Lets update and install some prerequisites.
The terminal will likely prompt you to make sure that it’s okay to install a specific package, just type Y and hit Enter .
That should cover all of the pre-requisites that we will need to be installed to continue on with the process. The pre-reqs are required to get Ruby installed and PostgreSQL (which we will be going over a little bit later).
Installing Ruby
In order for us to install Rails we first need to install Ruby. For the purpose of this article we will be installing Ruby 2.4.1 , your version may differ but at the time of writing this Ruby 2.4.1 is the latest stable build.
In order to install Ruby we will be using rbenv to handle the install and management of our Ruby gems.
Here is a script that will make life for us just a little bit easier. You should be able to just copy and paste this into your terminal but just like life, your mileage may vary.
Now that we have our path built and plugin directory installed for rbenv and Ruby we can now install the latest Ruby version.
Installing Ruby this way takes a bit running through the terminal; patience young grasshopper.
Disclaimer if you are like me and already had rbenv & Ruby previously installed and are getting a message that says…
… you will need to pull the latest version of rbenv and it’s definitions so that you can install the latest version of Ruby. To do that simple input this into your terminal.
Now you can go back to the previous step and install the latest Ruby version you have in your definitions.
Installing Bundler
Next we need to install Bundler Ruby’s package manager. This one is pretty simple.
Now we need to rehash our gems, this updates the pointers to the right location of the new packages.
Installing Ruby on Rails Pre-requisites
Rails is dependent on NodeJS for runtimes in the asset pipeline so we will need to first install NodeJS.
Lets add NodeJS official repository to our system.
Now that the official respository is mapped to our system we will need to install NodeJS.
Awesome, lets just take a minute to make a little sanity check before we continue on installing Rails. Lets just make sure that NodeJS is installed.
You should get something like v4.8.1 . If you get a version with the last command lets continue on installing Rails.
Installing Ruby on Rails
Now that we’ve got Ruby and all of our pre-requisites for Rails installed we can go ahead and install Rails.
Pretty straightforward really but we have to remember to rehash our environment so we have all the correct pointers.
Now lets check to see we have the correct version of Rails installed.
We should hopefully get v5.0.2 or a similar version. Again mileage may vary.
AWESOME! We’ve got Rails installed on our system!
Lets not get in front of ourselves though, we still can’t really use it. We need to setup our database infrastructure.
Installing PostgreSQL
At this point I’m going to state that the current, easiest and most supported database environment that works without workarounds with Rails is MySQL. That being said nearly every developer and bootcamp I can think of uses PostgreSQL and really that’s likely why you are here, so can we use PostgreSQL w/Rails on Windows 10 Bash Linux Subsystem?
Well, we can, we just have to do a little bit of working around. Instead of our typical route of installing PostgreSQL through the terminal we will have to install PostgreSQL as a Windows binary and getting our two systems to connect to each other.
I’ll be honest, it’s a bit of a pain in the ass but Microsoft is currently working on the issue and hopefully we won’t have this issue in the near future. They’ve done good work listening to the community and pushing through the work quickly so I’m hopeful.
Lets download and install the latest stable version of PostgreSQL Windows binary.
PostgreSQL 9.6.2 provided by BigSQL: Download
Now that we have the PostgreSQL downloaded, lets begin to install it.
Follow along with the “Setup Wizard” leaving the defaults checked. If you want to install the additional packages you can but it’s not necessary and we don’t need the extra bloat.
Once you get to the “Password” section set up your password that you want for your postgres user account. I choose to just have my password be password for ease of use in my local environment. You can choose whatever password that you want but you will need to remember it later on in our work.
DO NOT USE “PASSWORD” FOR YOUR PASSWORD IN YOUR PRODUCTION ENVIRONMENT.
Great we got that installed, we got our password set, lets do a quick sanity check to make sure that our Bash Linux Subsystem is connecting to our Windows installation of PostgreSQL.
Run this command from your Bash terminal.
If everything was installed properly you should get a response similar to this and the postgres shell prompt.
Great we got it working. Now type \q to exit the postgres shell.
Creating our Rails application
First we want to make sure that we are in the correct directory. I use a directory on my desktop to keep my files organized, again your mileage may vary. We will use my file locations for an example and you will have to substitute where it is necessarry.
Note that we are storing our application in our Windows filesystem and NOT our Linux Subsystem. This is why we are changing directory into /mnt/c/Users from here you will have to identify your Windows user account, you can do this by running ls and seeing what shows up. For me my user account name is User . After that you will have to cd your way to the directory that you want to work in.
Now that we are in the proper directory lets create our first application.
We should see rails creating the application.
Change directory into your application.
Lets setup our database.yml file real quick just to make sure everything is still going good with our PostgreSQL installation.
Now from our terminal lets create our database.
If everything is working good we should get a message saying our development and test database was created.
Lets run our Rails server and make sure everything is working.
Now in your browser go the your localhost:3000 and you should be presented with verification that Rails is indeed running and installed.
Conclusion
That’s it, you’re all set to go. We now have Rails running with PostgreSQL on a Windows 10! Give yourself a pat on the back!! Woohoo.
If you have any questions you can contact me and I will do my best to help you along, there are some pretty common gotchas but if you just spend a few minutes Googling them you should find your resolution. Remember Google is your friend. If you still are having issues reach out and I’ll see what I can do to give you a hand.