1 2 3 4 5 6 7 8 9 10
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