DEV Community

smilesforgood
smilesforgood

Posted on

A Brief Overview of Rails Generators

One of the beautiful things about the Rails framework is the way that it codifies a number of best practices into an easy to get started, customizable, and highly documented tool. Why reinvent the wheel building up a boilerplate app when you can rely on some of the great minds who already did so, and focus your time on your own innovations? Rails generators are just one of the many things that allows Rails to power up great apps in a relatively short timeframe. We'll touch on some basics below.

Standard Generators

The basic format of a Rails generator is <rails generate generator-name details...>. This can also be shortened with the alias for generate, g, to <rails g generator-name details....>. In these examples, I'll use the alias g, but they can be written either way. For this example, we'll imagine that we are building an application with Book, Author, and Publisher models.

Model Generator:

Format: <rails g model Modelname>
Example: rails g model Book
This will create an empty migration for the books table, a Book model, plus the test files for the Book model.

Migration Generator:

Format: <rails g migration camel_case_description_of_migration column_name:data_type>
Example: rails g migration add_name_column_to_books name:string
This will create a fully populated migration file that looks like:
Screen Shot 2021-10-08 at 5.39.52 PM

Controller Generator:

Format: <rails g controller Pluralname [action action] [options]>
Example: rails g controller Books new create show update
This is a great generator to use in tandem with the Model and Migration generators. This example of the Controller generator will create a BooksController, complete with the boilerplate for actions listed in the generator (new, create, show, update) as well as view files for each of those actions. In addition, this will create routes for the listed actions, plus an associated scss file, and additional tests for the created items

Resource Generator:

Format: <rails g resource Modelname column_name:data_type>
Example: rails g resource Author name:string
The resource generator builds on the above three controllers while offering some slight variation. It will generate a migration file to create the authors table, complete with any options we passed in, here a name column with a string datatype. This will also generate the Author model, AuthorsController, a view folder for the author related view pages, a helper file, the full authors resource for routes, associated tests, and a scss file.

Scaffold Generator:

Format: <rails g scaffold Modelname column_name:data_type>
Example: rails g scaffold Publisher name:string
The Scaffold generator is the most robust generator. This builds a complete app according to boilerplate Rails standards. If you are quickly bootstrapping an app and want to follow all the conventions, this can be a great option to get something off the ground very quickly. I won't list all the files this generates, but the Rails documentation shows a full list. One note, in most cases you won't be building an app that completely follows conventions so this generator is used less often than other ones.

Additional Tools

Adding references:

One of the great things about using Rails generators is that you can populate most of the details of your belongs_to relationships via the command line. Rails will also work behind the scenes during database lookups to enforce requirements of these relationships when they are generated in this way. Using our examples above, we can imagine that a book belongs to an author. If we re-create our Book, we can add this relationship in:
rails g resource Book name:string author:references

Task Generator:

Format: <rails g task task_name>
Example: rails g task track_books
This will create a task file located in the tasks folder (lib/tasks/track_books.rake) where you can define tasks that you need in your app.

Destroy Generator:

This will do the reverse action of the associated generator and completely roll back whatever is included in the description. This full name of this command is destroy, but it can be aliased as d.
Format: <rails d model Name>
Example: rails d model Book
This example rolls back everything that was created with the command rails g model Book, destroying the associated test files, the Model, and the boilerplate migration.

I'll leave you with a final benefit to using generators when you can. As much as typing less to create more allows you to save time, generators also offer built in protection against typos and some anti-patterns. The human brain can only remember or see so much. Even while I was typing up this blog post, I was positive I had spelled "codefies" correctly and there was some other reason it had the squiggly line below it. (Turns out it really is "codifies", not "codefies" and an "e" is not an "i"...) So developers are prone to making mistakes. Sometimes those mistakes result in massive debugging efforts, but if you can avoid that, you may as well.

Latest comments (0)