Trust .ruby-version too

This commit is contained in:
David Heinemeier Hansson
2025-06-24 15:08:15 -07:00
parent 0816045730
commit fc3cb91107

View File

@ -1,6 +1,9 @@
# Install Ruby using gcc-14 for compatibility
if ! command -v ruby &>/dev/null; then if ! command -v ruby &>/dev/null; then
# Install Ruby using gcc-14 for compatibility
yay -S --noconfirm --needed gcc14 yay -S --noconfirm --needed gcc14
mise set -g CC=gcc-14 CXX=g++-14 mise set -g CC=gcc-14 CXX=g++-14
mise install -g ruby mise install -g ruby
# Trust .ruby-version
mise settings add idiomatic_version_file_enable_tools ruby
fi fi