homebrew-cask/Casks/intellij-idea-ce.rb

34 lines
1.3 KiB
Ruby

cask "intellij-idea-ce" do
version "2020.3,203.5981.155"
sha256 "e73fe982ea3a85ffb5c884ec2945a28ca7b0e707133139ef932541b06bf0d325"
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"
name "IntelliJ IDEA Community Edition"
name "IntelliJ IDEA CE"
desc "IDE for Java development - community edition"
homepage "https://www.jetbrains.com/idea/"
auto_updates true
conflicts_with cask: "homebrew/cask-versions/intellij-idea-ce19"
app "IntelliJ IDEA CE.app"
uninstall_postflight do
ENV["PATH"].split(File::PATH_SEPARATOR).map { |path| File.join(path, "idea") }.each do |path|
if File.exist?(path) &&
File.readlines(path).grep(/# see com.intellij.idea.SocketLock for the server side of this interface/).any?
File.delete(path)
end
end
end
zap trash: [
"~/Library/Application Support/JetBrains/IdeaIC#{version.major_minor}",
"~/Library/Caches/JetBrains/IdeaIC#{version.major_minor}",
"~/Library/Logs/JetBrains/IdeaIC#{version.major_minor}",
"~/Library/Preferences/com.jetbrains.intellij.ce.plist",
"~/Library/Saved Application State/com.jetbrains.intellij.ce.savedState",
]
end