LearnAn Introduction to the Rails Command

   
Avatar

Jason Seifer
writes on July 6, 2015

If you’ve worked with a Rails application, you’ve used the rails command. In this post, we’re going to go in depth with the rails command and find out what it does. For the purposes of this post, placeholder text will go in the form of rails command [value] where [value] represents something you’re trying to accomplish. For example, if we’re generating a new rails command called treehouse, rails new [value] would be equal to saying rails new treehouse. With that out of the way, let’s get going!

Generating a New Application

In order to generate a rails application, you’ll generally use the rails new [app name] command. This is pretty straightforward but did you know that there are a ton of different options that you can possibly use? The format is as follows:

rails new APP_PATH [options]

The APP_PATH is going to be the path to the new app. Generally, you will say that it is relative to the current directory. However, a full path can be specified such as:

rails new /Users/jason/Sites/treehouse

There are a ton of different options that go along with it. It’s possible to specify a different Ruby installation, skip using bundler, and more. Let’s take a look at some of the most common ones you might use.

-m or --template=TEMPLATE

The template option allows you to run different templates against a freshly generated rails application. The flag is taken with a path as an argument to the template file. You can read more about Rails application templates at the rails guide on the subject. The railsapps project has a ton of different templates you can peruse to see if any apply to your applications.

-d or --database

This flag allows the database to be set when creating a rails application. The defaults for the selected database will be written to the config/database.yml template. If no argument is specified, the default database used is sqlite3. This keeps the databases themselves in the db directory. While generally fine in development, sqlite3 is rarely used in production.

--skip-sprockets

If you aren’t interested in using the Rails asset pipeline, this can be skipped entirely when creating a new rails application. This might be done in the cases of building an API only application or using grunt or bower to manage assets.

Runtime Options for All Commands

These are going to be the most often used of the bunch. When you run a rails generate command, you can almost always use the following options to modify what the command does. There are two that are used most: -f or --force option to overwrite files. You may want to do this in the case of regenerating a model, controller, view or the like.

Similarly, the -p or --pretend option will simulate what is about to happen when you run the command. This is useful to run before you actually run the command to make sure it behaves as you expect it to. For example, when generating a scaffold, you may want to skip asset creation of stylesheets and javascripts.

Rails Generate

When you run the generate command (aliased as g) with no arguments, rails will give you the option to generate any of the following:

  • assets
  • controller
  • generator
  • helper
  • integration_test
  • jbuilder
  • job
  • mailer
  • migration
  • model
  • resource
  • scaffold
  • scaffold_controller
  • task

As you might expect from that list, you can go further in depth on each of those. When generating any of the above items, such as a model, the runtime options above can be used. So doing the following:

rails generate model account

Would generate the following files:


app/models/account.rb
test/models/account_test.rb
test/fixtures/accounts.yml
db/migrate/XXX_create_accounts.rb

However, the files would not be generated if you modified the above command to be the following:

rails generate model account -p

In that case, rails would only pretend to generate the files without actually overwriting anything.

You can ask for help and options on any of those generators by using the -h or --help option.

Destroy

This is a quick command. Almost anything created with the generate command can be destroyed with the destroy command. For example, to destroy the above created account model:

rails destroy model account -p

Note the -p flag to pretend to delete something first. Just in case.

Console

The rails console allows you to launch an irb session with your rails application loaded. This means you have access to all of your models, controllers, gems, etc. There are a couple of flags which make the rails console extremely useful.

--environment

The -e or --environment option allows you to load in a different rails environment to the console. This will most likely take effect with a database selection where you can check out data in the context of that environment. For example, on a staging machine, you can launch a staging console by doing the following:

rails console -e staging

The -e can also be omitted if you choose.

--sandbox

The sandbox option puts everything done in that console session in a database transaction. The transaction is then rolled back when you exit the console. So, feel free to delete your entire user database while you’re in the console and it will safely rollback on exit.

I’m just kidding, there are risks involved but it is a nice feature. Always keep backups and never do that in production.

Server

The rails server command will run your application. The server command is run in the following format:

rails server [server] [options]

Unlike the generate command, the rails server does not allow a pretend or force flag.
If using a different server than webrick, that must be specified in your Gemfile and available to your rails environment. For example, if running the puma server, the command would be the following:

rails server puma

The following options are valid:

  • -p Port
  • -b Binding (ip address)
  • -c Config file (for custom rack configuration)
  • -d Daemonize server
  • -u Enable debugger
  • -e Change the environment (defaults to development)
  • -P Specify a PID file

We can combine the above options. For example, to bind to a local ip on port 8081 with the puma server, we would run the following command:

rails server puma -p 8081 -b 127.0.0.1

Runner

The rails runner command executes rails code that is passed in as a string. It is not advisable to put a ton of code in here. Generally, you will want to keep this to one or two commands. For example, let’s say you had a class that billed subscriptions called User with a class method called report that printed a small summary of usage to standard output. In that case, you may want to do something like the following:

rails runner -e production 'User.report'

The rails runner can also point to a file. This will preload the app before running the contents of the Ruby file. In that case, you would give it a path:

rails runner -e production /home/deploy/apps/myapp/user_report.rb

Finally, you can use the rails runner as a shebang line to run executables.

But Wait, There’s More!

There’s one more command that’s a bit beyond the scope of this article, and that’s the plugin command. That will generate a new plugin in your rails application in its own directory. Plugins can be used to enhance the behavior of your application and be reused relatively easily.

That covers all of the options to the rails command. The next section contains a list of tables with the different commands, their shortcuts, and a quick description. You can get any of these yourself by typing rails help [command].

Command Tables

rails new commands
Option (short) Option (long) Description
-r --ruby=[PATH] Path to Ruby binary. This defaults to the current Ruby.
-m --template=TEMPLATE Path to some application template (can be a filesystem path or URL)
--skip-gemfile, --no-skip-gemfile Do or Don’t create a Gemfile
-B --skip-bundle, --no-skip-bundle Do or Don’t run bundle install
-G --skip-git, --no-skip-git Skip creating .gitignore file
--skip-keeps, --no-skip-keeps Skip source control .keep files
-O --skip-active-record, --no-skip-active-record Skip Active Record files
-S --skip-sprockets, --no-skip-sprockets Skip Sprockets files
--skip-spring, --no-skip-spring Don’t install Spring application preloader
-d --database=DATABASE Preconfigure for selected database (options: mysql, oracle, postgresql, sqlite3, frontbase, ibm_db, sqlserver, jdbcmysql, jdbcsqlite3, jdbcpostgresql, jdbc. Defaults to sqlite3.
-j --javascript=JAVASCRIPT Preconfigure for selected JavaScript library. Default: jquery
-J --skip-javascript, --no-skip-javascript Skip JavaScript files
--dev, --no-dev Setup the application with Gemfile pointing to your Rails checkout
--edge, --no-edge Setup the application with Gemfile pointing to Rails repository
--skip-turbolinks, --no-skip-turbolinks Skip turbolinks gem
-T --skip-test-unit, --no-skip-test-unit Skip Test::Unit files
--rc=RC Path to file containing extra configuration options for rails command
--no-rc, --no-no-rc Skip loading of extra configuration options from .railsrc file
rails commands
Shortcut Command Description
g generate Generate new code (models, controllers, views, tests, etc)
c console [ENV] Start a console
s server Start a server
rails console
rails console [environment] [options]
Flag Description
-s Sandbox and rollback database modifications on exit.
-e Specify environment
--debugger Enable debugger.
Runtime options:
Option (short) Option (full) Description
-f --force Overwrite files that already exist
-p --pretend, --no-pretend Run but do not make any changes
-q --quiet, --no-quiet Suppress status output
-s --skip, --no-skip Skip files that already exist
rails server options
rails server [server] [options]
Flag (short) Flag (long) Description
-p --port Run server on specified port
-b --binding Binds Rails to the specified IP. Default: localhost
-c --config=file Users a custom rack configuration
-d --daemon Runs server as a Daemon.
-u --debugger Enables the debugger.
-e --environment=name Specify environment to run server under. Default: development
-P --pid=pid Specified PID file. Default: tmp/pids/server.pid
Rails Runner Options
Usage: rails runner [options] [<'Some.ruby(code)'> | ]
-e --environment=name Specifies the environment for the runner to operate under (test/development/production). Default: development
-h --help Show help message.

 

GET STARTED NOW

Learning with Treehouse for only 30 minutes a day can teach you the skills needed to land the job that you've been dreaming about.

Get Started

One Response to “An Introduction to the Rails Command”

  1. Okay I use this on the command line to create a new project – rails new ProjectName – Now I goofed something up and I want to start over again. So I need to complete remove this an do – rails new ProjectName again – What’s the command to discard ProjectName completely? Simple reverse of rails new? FYI: nothing has been pushed to git yet.

Leave a Reply

You must be logged in to post a comment.

man working on his laptop

Are you ready to start learning?

Learning with Treehouse for only 30 minutes a day can teach you the skills needed to land the job that you've been dreaming about.

Start a Free Trial
woman working on her laptop