cask 'intellij-idea-eap-nextversion' do version '2017.1.1,171.4073.28' sha256 '424190994adaf09ee5f9342eb7585cda7cc62ff84a40bf605778ff9f13a4680c' url "https://download.jetbrains.com/idea/ideaIU-#{version.after_comma}.dmg" name 'IntelliJ IDEA Ultimate next version EAP' homepage 'https://www.jetbrains.com/idea/whatsnew/' auto_updates true app 'IntelliJ IDEA.app' uninstall_postflight do ENV['PATH'].split(File::PATH_SEPARATOR).map { |path| File.join(path, 'idea') }.each { |path| File.delete(path) if File.exist?(path) } end zap delete: [ "~/Library/Application Support/IntelliJIdea#{version.major_minor}", "~/Library/Caches/IntelliJIdea#{version.major_minor}", "~/Library/Logs/IntelliJIdea#{version.major_minor}", "~/Library/Preferences/IntelliJIdea#{version.major_minor}", ] end