Merge pull request #1236 from reitermarkus/homebrew-cask

“Homebrew Cask” -> “Homebrew-Cask”
This commit is contained in:
Markus Reiter 2016-10-06 22:34:39 +02:00 committed by GitHub
commit 6923d81a72
3 changed files with 6 additions and 6 deletions

View File

@ -9,7 +9,7 @@ def blacklisted?(name)
We recommend using a MacTeX distribution: https://www.tug.org/mactex/ We recommend using a MacTeX distribution: https://www.tug.org/mactex/
You can install it with Homebrew Cask: You can install it with Homebrew-Cask:
brew cask install mactex brew cask install mactex
EOS EOS
when "pip" then <<-EOS.undent when "pip" then <<-EOS.undent
@ -73,7 +73,7 @@ def blacklisted?(name)
and cabal-install instead: and cabal-install instead:
brew install ghc cabal-install brew install ghc cabal-install
You can install with Homebrew Cask: You can install with Homebrew-Cask:
brew cask install haskell-platform brew cask install haskell-platform
EOS EOS
when "mysqldump-secure" then <<-EOS.undent when "mysqldump-secure" then <<-EOS.undent
@ -82,7 +82,7 @@ def blacklisted?(name)
when "ngrok" then <<-EOS.undent when "ngrok" then <<-EOS.undent
Upstream sunsetted 1.x in March 2016 and 2.x is not open-source. Upstream sunsetted 1.x in March 2016 and 2.x is not open-source.
If you wish to use the 2.x release you can install with Homebrew Cask: If you wish to use the 2.x release you can install with Homebrew-Cask:
brew cask install ngrok brew cask install ngrok
EOS EOS
end end

View File

@ -443,7 +443,7 @@ class Reporter
# For formulae migrated to cask: Auto-install cask or provide install instructions. # For formulae migrated to cask: Auto-install cask or provide install instructions.
if new_tap_name == "caskroom/cask" if new_tap_name == "caskroom/cask"
if new_tap.installed? && (HOMEBREW_REPOSITORY/"Caskroom").directory? if new_tap.installed? && (HOMEBREW_REPOSITORY/"Caskroom").directory?
ohai "#{name} has been moved to Homebrew Cask." ohai "#{name} has been moved to Homebrew-Cask."
ohai "brew uninstall --force #{name}" ohai "brew uninstall --force #{name}"
system HOMEBREW_BREW_FILE, "uninstall", "--force", name system HOMEBREW_BREW_FILE, "uninstall", "--force", name
ohai "brew prune" ohai "brew prune"
@ -451,7 +451,7 @@ class Reporter
ohai "brew cask install #{name}" ohai "brew cask install #{name}"
system HOMEBREW_BREW_FILE, "cask", "install", name system HOMEBREW_BREW_FILE, "cask", "install", name
else else
ohai "#{name} has been moved to Homebrew Cask.", <<-EOS.undent ohai "#{name} has been moved to Homebrew-Cask.", <<-EOS.undent
To uninstall the formula and install the cask run: To uninstall the formula and install the cask run:
brew uninstall --force #{name} brew uninstall --force #{name}
brew cask install #{name} brew cask install #{name}

View File

@ -36,7 +36,7 @@ class Requirement
if cask if cask
s += <<-EOS.undent s += <<-EOS.undent
You can install with Homebrew Cask: You can install with Homebrew-Cask:
brew cask install #{cask} brew cask install #{cask}
EOS EOS
end end