You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
878 B
23 lines
878 B
cask 'intellij-idea-ce-eap-nextversion' do
|
|
version '2017.1.1,171.4073.28'
|
|
sha256 'c895688e9e65dd02376fbc1a875d509f202bd40c6da4e7e899e3084e59ebe28c'
|
|
|
|
url "https://download.jetbrains.com/idea/ideaIC-#{version.after_comma}.dmg"
|
|
name 'IntelliJ IDEA Community Edition next version EAP'
|
|
homepage 'https://www.jetbrains.com/idea/whatsnew/'
|
|
|
|
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/Caches/IdeaIC#{version.major_minor}",
|
|
"~/Library/Logs/IdeaIC#{version.major_minor}",
|
|
"~/Library/Preferences/IdeaIC#{version.major_minor}",
|
|
]
|
|
end
|
|
|