brew/Library/Homebrew/cask/spec/support/install_helper.rb

11 lines
202 B
Ruby
Raw Normal View History

2016-08-18 22:11:42 +03:00
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