homebrew-cask/Casks/intellij-idea.rb

28 lines
1.2 KiB
Ruby

cask 'intellij-idea' do
version '2017.1.4,171.4694.23'
sha256 '65d1e222192e31eed63851e4bbb4cf07e265d07cabdc4f9d8d2c491204eff0ab'
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: '4bc73ffbe70fb6020e8df55b421694bdf01bdd4ade9867de1c0cc45b647debdd'
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) }
end
zap delete: [
"~/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/Preferences/com.jetbrains.intellij.plist',
'~/Library/Saved Application State/com.jetbrains.intellij.savedState',
]
end