rtx-cli 2023.12.21

Polyglot runtime manager (asdf rust clone)
# frozen_string_literal: true

def debug?
  !!ENV["RTX_DEBUG"]
end

def log_debug(msg)
  warn "[DEBUG] rtx #{msg}" if debug?
end

def reshim
  if `which ruby`.strip != ""
    log_debug "reshim"
    `rtx reshim`
  else
    log_debug "reshim skipped: ruby not found"
  end
end

module ReshimInstaller
  def install(options)
    super
    # We don't know which gems were installed, so always reshim.
    reshim
  end
end

if defined?(Bundler::Installer)
  Bundler::Installer.prepend ReshimInstaller
else
  Gem.post_install do |installer|
    # Reshim any (potentially) new executables.
    reshim if installer.spec.executables.any?
  end
  Gem.post_uninstall do |installer|
    # Unfortunately, reshimming just the removed executables or
    # ruby version doesn't work as of 2020/04/23.
    reshim if installer.spec.executables.any?
  end
end