docs/lang/ruby.md
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.
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:
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.
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:
mise settings ruby.compile=false
mise use [email protected]
Precompiled binaries are sourced from jdx/ruby and are available for the following platforms:
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:
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.
mise use -g ruby@truffleruby # latest version of truffleruby
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:
# supports comments
pry
bcat ~> 0.6.0 # supports version constraints
rubocop --pre # install prerelease version
.ruby-version and Gemfile supportmise 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:
ruby -v > .ruby-version
Enable idiomatic version file reading for ruby:
mise settings add idiomatic_version_file_enable_tools ruby
See idiomatic version files for more information.
ruby-build should update daily, however if you find versions do not yet exist you can force an update:
mise cache clean
mise ls-remote ruby
ruby-build already has a
handful of settings,
in additional to that mise has a few extra settings: