brew/Library/Homebrew/extend/os/mac/missing_formula.rb

17 lines
323 B
Ruby
Raw Normal View History

module Homebrew
module MissingFormula
class << self
def blacklisted_reason(name)
case name.downcase
when "xcode"
<<~EOS
Xcode can be installed from the App Store.
EOS
else
generic_blacklisted_reason(name)
end
end
end
end
end