RubyMine 2017.1 Help

Tuning RubyMine

In this part:

Changing RubyMine properties

RubyMine makes it possible to change *.vmoptions and idea.properties files without editing them in the RubyMine installation folder.

To create an empty idea.properties file or to copy *.vmoptions file, choose the Help | Edit Custom Properties or Help | Edit Custom VM Options on the main menu respectively. Refer to the menu items description for details.

Managing *.vmoptions file

The location of the *.vmoptions file depends on the operating system you are currently using:

  • For Windows: <RubyMine installation folder>/bin/rubymine.exe.vmoptions or <RubyMine installation folder>/bin/rubymine64.exe.vmoptions
  • For *NIX: <RubyMine installation folder>/bin/rubymine.vmoptions or <RubyMine installation folder>/bin/rubymine64.vmoptions
  • For macOS, you need to make a copy of the rubymine.vmoptions file in the IDE preferences folder and then edit this copy. The reason is that the app bundle is signed and you should not modify any files inside the bundle.

    For older versions, the settings are stored in /Applications/RubyMine <version>.app/Contents/Info.plist.

To avoid editing files in the RubyMine installation folder, do one of the following:

  • From the main menu, choose Help | Edit Custom VM Options to create a copy of the rubymine.vmoptions file in the user home directory. Refer to Edit Custom VM Options for details.
  • Copy the existing file from the RubyMine installation folder somewhere and save the path to this location in the RUBYMINE_VM_OPTIONS environment variable (IDEA64_VM_OPTIONS for 64 bit systems) .
  • Copy the existing <RubyMine installation folder>/bin/rubymine.exe.vmoptions or the <RubyMine installation folder>/bin/rubymine64.exe.vmoptions file from the RubyMine installation folder into your user home directory.

Then edit this file in the new location.

If the RUBYMINE_VM_OPTIONS (IDEA64_VM_OPTIONS for 64 bit systems) environment variable is defined, or the *.vmoptions file exists, this file is used instead of the one located in the RubyMine installation folder.

Example: Increasing the heap size

To increase RubyMine heap size, you should copy the original rubymine.vmoptions file to the above-mentioned location, and then modify the -Xmx setting.

Managing idea.properties file

The idea.properties file located in the bin directory of the RubyMine installation folder should not be edited. Instead of editing the original idea.properties file, create an idea.properties file in the following location, open it for editing and add the required properties:

  • For Windows: %USERPROFILE%\.RubyMine XX
  • For *NIX: ~/.RubyMine XX
  • For macOS: ~/Library/Preferences/RubyMine XX

Example: Changing case of unicode literals

RubyMine allows defining whether non-ascii characters should use literals like '\u00AB' or '\00ab'.

This behavior is controlled by the system property idea.native2ascii.lowercase. By default, upper case characters are used.

If it is desirable to use lower case characters, create the file idea.properties in the location specified above, open it for editing and add the following line:

idea.native2ascii.lowercase=true

Specifying custom JDK, properties or vmoptions files across platforms

A custom JDK, *.properties and *.vmoptions files are specified across platforms in a unified way.

All the launchers look at the following environment variables:

  • $<IDE-NAME>_JDK (<IDE-NAME>_JDK_64)
  • $<IDE-NAME>_PROPERTIES
  • $<IDE-NAME>_VM_OPTIONS

See Also

Last modified: 18 July 2017