install_ruby

in lib/gdk/tool_versions_updater.rb [175:185]


    def install_ruby(versions)
      return if versions.nil? || versions.empty?

      versions.each do |version|
        ENV['MISC_RUBY_APPLY_PATCHES'] = RUBY_PATCHES[version] if RUBY_PATCHES[version]
        run_install('ruby', version)
      end

      GDK::Shellout.new('asdf reshim ruby').execute unless GDK.config.asdf.opt_out?
    end