homebrew-cask-versions/lib/cask/cli/install.rb
phinze 5a0d1d5556 quick sketchy first release of code/ideas
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
2012-03-09 22:43:50 -06:00

11 lines
210 B
Ruby

class Cask::CLI::Install
def self.run(*arguments)
cask_name, *rest = *arguments
cask = Cask.load(cask_name)
cask.install
end
def self.help
"installs the cask of the given name"
end
end