mirror of
https://github.com/donl/homebrew-cask-versions.git
synced 2026-07-16 22:06:43 -06:00
Make `brew cask alfred` inform the user about the new Alfred support for Casks. Should help with the transition. refs #9405
11 lines
342 B
Ruby
11 lines
342 B
Ruby
class Hbc::CLI::Alfred < Hbc::CLI::Base
|
|
def self.run(*args)
|
|
ohai "Great news!"
|
|
ohai "As of v2.6, Alfred now has first-class support for Casks out of the box!"
|
|
ohai "So there's no more need for `brew cask alfred`. Go upgrade your Alfred! :)"
|
|
end
|
|
|
|
def self.help
|
|
"displays note about new built-in alfred support"
|
|
end
|
|
end
|