2019-04-19 15:38:03 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-03-18 17:02:08 +02:00
|
|
|
module Homebrew
|
|
|
|
module MissingFormula
|
|
|
|
class << self
|
|
|
|
def blacklisted_reason(name)
|
|
|
|
case name.downcase
|
|
|
|
when "xcode"
|
2019-01-26 17:13:14 +00:00
|
|
|
<<~EOS
|
|
|
|
Xcode can be installed from the App Store.
|
|
|
|
EOS
|
2017-03-18 17:02:08 +02:00
|
|
|
else
|
|
|
|
generic_blacklisted_reason(name)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|