Back to Mise

Ruby

docs/lang/ruby.md

2026.5.13.5 KB
Original Source

Ruby

Like rvm, rbenv, or asdf, mise can manage multiple versions of Ruby on the same system.

The following are instructions for using the ruby mise core plugin. This is used when there isn't a git plugin installed named "ruby". If you want to use asdf-ruby then use mise plugins install ruby GIT_URL.

The code for this is inside the mise repository at ./src/plugins/core/ruby.rs.

Usage

The following installs the latest version of ruby-3.2.x (if some version of 3.2.x is not already installed) and makes it the global default:

sh
mise use -g [email protected]

Behind the scenes, mise uses ruby-build to compile ruby from source. Ensure that you have the necessary dependencies installed. You can check its README for additional settings and some troubleshooting.

Precompiled Binaries

Mise can download precompiled Ruby binaries instead of compiling from source. This significantly reduces installation time.

Precompiled binaries will become the default in 2026.8.0. To opt in now:

sh
mise settings ruby.compile=false
mise use [email protected]

Precompiled binaries are sourced from jdx/ruby and are available for the following platforms:

  • macOS (arm64/Apple Silicon only)
  • Linux arm64
  • Linux x86_64

If a precompiled binary is not available for your platform or Ruby version, mise automatically falls back to compiling from source using ruby-build.

To always compile from source even when precompiled binaries are available:

sh
mise settings ruby.compile=true

You can also use a custom source for precompiled binaries by setting ruby.precompiled_url to either a GitHub repo (e.g., owner/repo) or a full URL template.

You can also install a specific ruby flavour. To get the latest version from a flavour, just use the flavour prefix.

sh
mise use -g ruby@truffleruby            # latest version of truffleruby

Default gems

mise can automatically install a default set of gems right after installing a new ruby version. To enable this feature, provide a $HOME/.default-gems file that lists one gem per line, for example:

text
# supports comments
pry
bcat ~> 0.6.0 # supports version constraints
rubocop --pre # install prerelease version

.ruby-version and Gemfile support

mise uses a mise.toml or .tool-versions file for auto-switching between software versions. However, it can also read ruby-specific version files .ruby-version or Gemfile (if it specifies a ruby version).

Create a .ruby-version file for the current version of ruby:

sh
ruby -v > .ruby-version

Enable idiomatic version file reading for ruby:

sh
mise settings add idiomatic_version_file_enable_tools ruby

See idiomatic version files for more information.

Manually updating ruby-build

ruby-build should update daily, however if you find versions do not yet exist you can force an update:

bash
mise cache clean
mise ls-remote ruby

Settings

ruby-build already has a handful of settings, in additional to that mise has a few extra settings:

<script setup> import Settings from '/components/settings.vue'; </script> <Settings child="ruby" :level="3" />