mirror of
https://github.com/donl/homebrew-cask-versions.git
synced 2026-07-17 14:26:45 -06:00
this is a first draft of an idea i've had kicking around for awhile pushing out some code so i can get a conversation started
9 lines
198 B
Ruby
9 lines
198 B
Ruby
class Cask::CLI::Linkapps
|
|
def self.run(*arguments)
|
|
Cask.installed.map(&:linkapps)
|
|
end
|
|
|
|
def self.help
|
|
"makes a symlink from all cask-installed .app files into ~/Applications"
|
|
end
|
|
end
|