RubyMine 2020.1 Help

Create and run your first Ruby project

This tutorial will show you how to create and run the simple interactive Ruby program in RubyMine.

Before starting this tutorial, do the following:

We'll perform all steps using RubyMine installed on macOS.

Create an empty application

To create a Ruby program from scratch, do the following:

  1. Run RubyMine and click Create New Project on the Welcome Screen.

    Welcome screen
  2. In the New Project dialog, make sure that Empty Project is selected on the left pane. Then, specify the following settings:

    New Project dialog / Empty
    • Location: Specify a project's location and name (ruby-helloworld in our case).

    • Ruby SDK: Select a required Ruby interpreter installed on your system.

    After you've specified all the options, click Create in the New Project dialog.

Create a Ruby file

After creating a project, you will see its structure in the Project tool window on the left. To add a Ruby file, do the following:

  1. Select a project root in the Project tool window and press Alt+Insert.

  2. In the invoked popup, select Ruby File/Class and press Enter.

    New
  3. In the invoked popup, specify a script name (script in our case) and click OK.

    New Ruby File/Class
  4. In the editor, insert the following code:

    puts "Please enter your name" name = gets.chomp puts "Hello, #{name}! I'm Ruby!"

Run an application

To run the created script, do the following:

  1. Press Ctrl twice and type the following command:

    ruby script.rb

    Press Enter.

    Run ruby script
  2. In the Run tool window, type any name and press Enter to see a program's response.

Run/debug configurations

After you run a Ruby script, RubyMine automatically creates a special profile - a run/debug configuration. Such a profile is used for running, debugging and testing applications, and specifies the script name, working directory, actions to be performed before launch, and so on.

To edit a configuration, go to the dropdown on the top of the editor and click Edit Configurations.

Edit Configurations

In the invoked Run/Debug Configurations dialog, you can specify the settings required to launch your script.

Run/Debug Configurations

See Working with Run/Debug Configurations for more details.

Last modified: 29 May 2020