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

29 lines
1.2 KiB
Ruby

cask 'intellij-idea-ce' do
version '2017.1.4,171.4694.23'
sha256 '23f72b55325ec65df70185a3723813122108462e2ddb6228a1d55d6e25ce8bbc'
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: '14d7f4816c9f92fff253240dec795b949a774030c94495700cb728b0e297fbb1'
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) }
end
zap delete: [
"~/Library/Application Support/IdeaIC#{version.major_minor}",
"~/Library/Preferences/IdeaIC#{version.major_minor}",
"~/Library/Caches/IdeaIC#{version.major_minor}",
"~/Library/Logs/IdeaIC#{version.major_minor}",
'~/Library/Preferences/com.jetbrains.intellij.ce.plist',
'~/Library/Saved Application State/com.jetbrains.intellij.ce.savedState',
]
end