From 1fd26fddc0a215ad7836272e64c44e59b9da024e Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Wed, 11 Mar 2026 08:38:44 +0100 Subject: [PATCH] Fix that mise settings wouldn't be applied before installing Ruby So we'd be manually compiling. --- bin/omarchy-install-dev-env | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/omarchy-install-dev-env b/bin/omarchy-install-dev-env index f1cd31b8..99756a9e 100755 --- a/bin/omarchy-install-dev-env +++ b/bin/omarchy-install-dev-env @@ -50,9 +50,9 @@ case "$1" in ruby) echo -e "Installing Ruby on Rails...\n" omarchy-pkg-add libyaml - mise use --global ruby@latest - mise settings add idiomatic_version_file_enable_tools ruby mise settings add ruby.compile false + mise settings add idiomatic_version_file_enable_tools ruby + mise use --global ruby@latest echo "gem: --no-document" >~/.gemrc mise x ruby -- gem install rails --no-document echo -e "\nYou can now run: rails new myproject"