aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cask/spec/support/install_helper.rb
blob: c8023c66b3a143927d6de4c501b48229980e8eb2 (plain)
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