cask 'intellij-idea-ce' do version '2018.1.1,181.4445.78' sha256 '215d835e509796537fafcf90b47b615d75bd594ab961e724dd6de3b871a86e3c' url "https://download.jetbrains.com/idea/ideaIC-#{version.before_comma}.dmg" appcast 'https://data.services.jetbrains.com/products/releases?code=IIC&latest=true&type=release', checkpoint: '101f7dca54a83a653ebed2bf9d26beee9539cd953f8acc937dbd4c69e98f919d' name 'IntelliJ IDEA Community Edition' name 'IntelliJ IDEA CE' homepage 'https://www.jetbrains.com/idea/' auto_updates true app 'IntelliJ IDEA CE.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) && File.readlines(path).grep(%r{# see com.intellij.idea.SocketLock for the server side of this interface}).any? } end zap trash: [ "~/Library/Application Support/IdeaIC#{version.major_minor}", "~/Library/Caches/IdeaIC#{version.major_minor}", "~/Library/Logs/IdeaIC#{version.major_minor}", "~/Library/Preferences/IdeaIC#{version.major_minor}", '~/Library/Preferences/com.jetbrains.intellij.ce.plist', '~/Library/Saved Application State/com.jetbrains.intellij.ce.savedState', ] end