mirror of
https://github.com/donl/homebrew-cask-versions.git
synced 2026-07-17 06:16:47 -06:00
11 lines
246 B
Ruby
11 lines
246 B
Ruby
class Cask::CLI::Search
|
|
def self.run(*arguments)
|
|
search_term, *rest = *arguments
|
|
casks = {}
|
|
puts_columns Cask::CLI.nice_listing(Cask.all_titles.grep(/#{search_term}/))
|
|
end
|
|
|
|
def self.help
|
|
"searches all known casks"
|
|
end
|
|
end
|