method

step

rails latest stable - Class: ActiveSupport::ContinuousIntegration

Method not available on this version

This method is only available on newer versions. The first available version (v8.1.1) is shown here.

step(title, *command)
public

Declare a step with a title and a command. The command can either be given as a single string or as multiple strings that will be passed to `system` as individual arguments (and therefore correctly escaped for paths etc).

Examples:

step "Setup", "bin/setup"
step "Single test", "bin/rails", "test", "--name", "test_that_is_one"