Configuring SDK Gemsets
This feature is only supported in the Ultimate edition.
The following is only valid when Ruby Plugin is installed and enabled!
In this section:
Introduction
Gemsets are a convenient way to deal with the different gem environments for your applications. IntelliJ IDEA supports both RVM and rbenv gemsets.
Note that |
---|
Gemsets are supported for the following types of projects:
- All Ruby projects types
- All Rails project types
- Puppet Module
List of Ruby SDKs
To view the list of Ruby SDKs, available to the computer, follow these steps
- Open the Project Structure dialog (e.g. Ctrl+Shift+Alt+S).
- Click Modules and choose the desired module with Ruby support.
- Next, click the Gems tab, and observe the list:
To select an SDK for a project, click the radio button to the left of the desired Ruby SDK, or press Space.
Note the following:
- IntelliJ IDEA automatically detects Ruby versions installed.
- Add or remove any local or remote SDKs with the buttons
and
.
- Expand/collapse buttons
/
are only available for macOS and *NIX platforms, as the ones having gemsets. For Windows platform, these buttons are disabled.
- Speed search works for the list SDKs.
List of gemsets
For each SDK, open the list of available gemsets.
To view the list of gemsets for the selected SDK, follow these steps
- In the list of available SDKs, select the one marked with the icon
to the left:
- Do one of the following:
- Press Enter.
- Double-click the SDK node.
- Click the button
.
- Press right arrow key.
Note that the previous selection of a gemset per Ruby module is preserved. You can quickly return to it by merely selecting the SDK in question.
RVM gemset
If you haven’t specified any RVM gemset to use with the project yet, then the default and global gemsets are selected.
However, one can select any desired gemset by hitting Space or clicking the radio button to the left of the gemset name.

It's also possible to decide whether to use the global gemset
(hit Space, or select/clear the checkbox). Global gemset (if selected) is used to share gems to all the gemsets within an SDK.
The default gemset
, marked with a radio button, is used for any specific interpreter.
Creating RVM gemsets
For configuring RVM
gemsets, one should use the files .ruby-gemset
and .ruby-version
. Refer to the rvm documentation.
Creating a dedicated RVM gemset on project creation
To create a gemset for the new Ruby/Rails project, follow these steps:
- Create a new project.
As you type the new project name, IntelliJ IDEA suggests a gemset with the same name:Click the link Create to create the gemset (empty directory under the selected SDK).
Next, select the checkbox Use gemset <name> to use the newly created gemset for your project:
If you need to install Rails, note that Rails will be installed in this gemset.
- Now you are ready to create a new project with the gemset. Click the button Create for that.
Creating RVM gemset in the Setting/Preferences dialog
Note that |
---|
IntelliJ IDEA allows you to create an RVM gemset in the Setting/Preferences dialog. This is how it's done.
To create an RVM gemset
- Open the Setting/Preferences dialog.
- In this dialog, do the following:
- Choose Ruby SDK. If an RVM SDK has been selected for your project, then it is used. If an SDK has not been selected or a non-RVM SDK has been selected (for example, system,
chef
orremote
), then the default SDK is used. - Specify the desired gemset name.
- Choose Ruby SDK. If an RVM SDK has been selected for your project, then it is used. If an SDK has not been selected or a non-RVM SDK has been selected (for example, system,
The gemset with the specified name appears under the selected SDK.
Rbenv gemset
For rbenv, the default
gemset means the set of gems installed to the SDK folder, so you cannot unselect it (the checkbox to the left is disabled).
global
gemset has no special behavior.
rbenv
enables you to select as many gemsets as required (hit Space, or select/clear the checkbox to the left of the desired gemset).
Creating rbenv gemsets
Prerequisite
Before you start working with rbenv, make sure that rbenv-gemsets plugin is installed and enabled. The plugin is not bundled with IntelliJ IDEA.
There are the following ways of creating gemsets: using the commands of the rbenv-gemsets
plugin, or using the .rbenv-gemset
file.
To create a gemset commands of the rbenv-gemsets plugin, follow these steps:
- Open the Terminal tool window.
- Enter command in the format
rbenv gemset create <rbenv version number> <gemset name>
For example:
To create a rbenv gemset in the editor, follow these steps:
- Open for editing the file
.rbenv-gemset
(if the file does not exist, create it). - Type the new gemset name. The following steps depend on the existence of a gemset:
- If the gemset with the entered name exists, the completion is suggested:
- If the gemset with the entered name does not exist, then press Alt+Enter and choose the intention action Create gemset <gemset name>:
Refer to the rbenv documentation.
- If the gemset with the entered name exists, the completion is suggested:
As a result, the created gemset appears in the Project Structure Dialog dialog. Note that this gemset is already selected.
List of gems
In the Gems tab to the right of the selected Ruby module in the Project Structure Dialog dialog, there is the list of gems, available for an SDK or a gemset.
If you select an SDK, you'll see see all the gems available for the current project with that version. So doing, the gems of all gemsets are selected for the SDK in question.
Note the following:
- If an SDK has no gemsets (as on Windows platform), then all the gems installed with the selected SDK are shown in the right-hand pane.
- If an SDK has gemsets (as on macOS or *NIX platforms), then, when one selects a gemset, the gems for the selected gemset are shown in the right-hand pane. This is valid for both
rvm
andrbenv
. - If an SDK has gemsets, and this SDK is selected, then the contents of the right-hand pane depends on the version manager used:
rbenv
: the gems list shows all the gems from all the gemsets. So doing, the gems in the gems list have the note from which gemset they are taken. Same is valid for the External Libraries node in the Project Tool Window.rvm
: the gems list shows both theglobal
gemset and one gemset selected (by default, this is thedefault
gemset). So doing, the gems list bears no marking, as well as the External Libraries node in the Project Tool Window.
Speed search also work for the gems: just type a string, and speed search shows the matching entries only:

It's also possible to see the gem path, using the button , and the web page with the gem description, using the button
.