homebrew-cask-versions/lib/hbc/cli/alfred.rb
Paul Hinze d8942b7210 alfred: bring back cli command as stub
Make `brew cask alfred` inform the user about the new Alfred support for
Casks. Should help with the transition.

refs #9405
2015-02-06 09:52:06 -06:00

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