RubyMine 2023.3 Help

Run Rake tasks

Rake is a popular task runner for Ruby and Rails applications. For example, Rails provides the predefined Rake tasks for creating databases, running migrations, and performing tests. You can also create custom tasks to automate specific actions - run code analysis tools, backup databases, and so on.

RubyMine provides a convenient way to run, debug, and reload Rake tasks. Moreover, you can use run/debug configurations to run tasks with specific parameters: you can pass task arguments, specify environment variables, and so on.

Before running a Rake task

  1. Make sure the 'rake' gem is installed to the project SDK.

  2. Check that the Rakefile is located in the project's root.

Run a task

RubyMine allows you to run an arbitrary Rake task. For example, let’s see how to run the db:migrate task required for migrating a database in the Rails application:

Run a task using Run Anything

  1. Do one of the following:

    • Press Control twice and start typing db:migrate in the invoked popup. Select rake db:migrate from the list and press Enter.

      Run Anything / rake db:migrate
    • Go to Tools | Run Rake Task Control+Alt+R. In the invoked popup, start typing db:migrate, select db:migrate and press Enter.

  2. In the invoked Execute 'db:migrate' dialog, select the required migration version and environment. Click OK.

    Execute db:migrate

Run a task from the editor

  1. In the *.rake file, do one of the following:

    • Click the Run Rake Task button on the gutter next to the required task.

    • Place the caret at the required task name and press Alt+Enter.

  2. Depending on whether you want to run or debug a task, select Run '<task name>' or Debug '<task name>'. Press Enter.

After you've run a Rake task, RubyMine automatically creates a special profile - a temporary run/debug configuration. You can customize settings of this configuration, for example, you can pass task arguments, specify environment variables, and so on. Then, you can save the customized configuration to quickly run this configuration in the future.

Run a task using a run/debug configuration

RubyMine automatically creates the Rake run configurations for running the Minitest and RSpec tests in Rails applications - test and spec. You can run these tasks or any other task with the existing run/debug configurations in one of the following ways:

  • Press Control twice to invoke the Run Anything popup. Start typing the required configuration name, select it from the list, and press Enter.

  • Select the desired configuration on the toolbar and click Run Shift+F10.

  • Go to Run | Run... Alt+Shift+F10 and select the desired configuration from the list and press Enter.

Reload Rake tasks

Sometimes it is necessary to reload Rake tasks. For example, this can be useful if you created a custom task and need to run it. To reload Rake tasks, do one of the following:

  • Press Control+Shift+A and start typing Reload Rake Tasks. Select this item from the list and press Enter.

  • Go to Tools | Run Rake Task Control+Alt+R. In the invoked popup, select rake --tasks and press Enter.

Configure parameters for running a task

When you run a Rake task for the first time, RubyMine automatically creates a corresponding Rake temporary configuration, which can be saved. If necessary, you can create the Rake run/debug configuration manually from the predefined template.

To customize the run/debug configuration, do the following:

  1. Open the Run/Debug Configuration dialog in one of the following ways:

    • Select Run | Edit Configurations from the main menu.

    • With the Navigation bar visible (View | Appearance | Navigation Bar), choose Edit Configurations from the run/debug configuration selector.

      Edit run configurations
    • Press Alt+Shift+F10 and then press 0.

  2. In the opened Run/Debug Configurations dialog, select the required configuration in the Rake group, and specify its settings.

    Run/Debug Configurations: Rake

Run/debug configuration: Rake

Configuration tab

Item

Description

Name

In this field, specify the name of the current run/debug configuration.

Task name

Specify the name of the Rake task to be executed. Note that you can use autocompletion (Control+Space) to see the available tasks.

Arguments

Specify arguments to be passed to the Rake task. These arguments should be separated with commas. For example:

  1. Create the sample Rake task as shown below:

    task :sample, [:first, :last] do |t, args| puts "First name is #{args.first}" puts "Last name is #{args.last}" end
  2. Create the Rake run configuration and specify its settings in the following way:

    • Task name: sample

    • Arguments: "Andrew", "Fuller"

  3. Run the created configuration. The program will return:

    First name is Andrew Last name is Fuller

Turn on invoke/execute tracing, enable full backtrace --trace

Enable the --trace Rake command-line option.

Do a dry run without executing actions -dry-run

Enable the --dry-run Rake command-line option.

Display the tasks and dependencies, then exit --prereqs

Enable the --prereqs Rake command-line option.

Attach test runner UI for frameworks

Depending on the used testing framework, enable the required test runner UI for performing tests.

Working directory

Specify the working directory used by the running task. For example, this option is in effect when the running script loads other scripts by relative paths.

Environment variables

Specify the list of environment variables as the name-value pairs, separated with semi-colons. Alternatively, click the Browse button to create variables and specify their values in the Environment Variables dialog.

Ruby arguments

Specify the command-line arguments to be passed to the Ruby interpreter.

Ruby SDK

Specify the desired Ruby interpreter. You can choose the project default Ruby SDK, or select a different one from the list of configured Ruby SDKs.

Last modified: 07 September 2023