brew/Library/Homebrew/cask/spec/support/install_helper.rb
AnastasiaSulyagina e81f4ab7de init
2016-08-19 14:50:14 +03:00

11 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