homebrew-cask/Casks/intellij-idea.rb

28 lines
1.3 KiB
Ruby

cask 'intellij-idea' do
version '2017.2.6,172.4574.11'
sha256 'f1195941e812aa9df84557d1f091a4769111507612d96c750b4b7faadd46b786'
url "https://download.jetbrains.com/idea/ideaIU-#{version.before_comma}.dmg"
appcast 'https://data.services.jetbrains.com/products/releases?code=IIU&latest=true&type=release',
checkpoint: 'f8552394009e4f7e580f0b3c10380d2cb51dcdedeefbdda28771e722407b13e3'
name 'IntelliJ IDEA Ultimate'
homepage 'https://www.jetbrains.com/idea/'
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) && File.readlines(path).grep(%r{# see com.intellij.idea.SocketLock for the server side of this interface}).any? }
end
zap trash: [
'~/Library/Preferences/com.jetbrains.intellij.plist',
"~/Library/Caches/IntelliJIdea#{version.major_minor}",
"~/Library/Logs/IntelliJIdea#{version.major_minor}",
"~/Library/Application Support/IntelliJIdea#{version.major_minor}",
"~/Library/Preferences/IntelliJIdea#{version.major_minor}",
'~/Library/Saved Application State/com.jetbrains.intellij.savedState',
]
end