15 lines
356 B
Ruby
Raw Normal View History

# typed: true # This cannot be `# typed: strict` due to the use of `undef`.
2022-11-20 10:49:53 -08:00
# frozen_string_literal: true
module Homebrew
class Cleanup
undef use_system_ruby?
def use_system_ruby?
2023-11-07 19:27:30 +00:00
return false if Homebrew::EnvConfig.force_vendor_ruby?
2022-11-20 10:49:53 -08:00
Homebrew::EnvConfig.developer? && ENV["HOMEBREW_USE_RUBY_FROM_PATH"].present?
2022-11-20 10:49:53 -08:00
end
end
end