homebrew-cask-versions/spec/support/install_helper.rb
2015-01-24 20:01:54 +00:00

10 lines
202 B
Ruby

module InstallHelper
class << self
def install_without_artifacts(cask)
Hbc::Installer.new(cask).tap do |i|
i.download
i.extract_primary_container
end
end
end
end