homebrew-cask/Casks/webstorm.rb

32 lines
1.1 KiB
Ruby

cask "webstorm" do
version "2020.2,202.6397.88"
sha256 "fd90e34497fa2ae8af3414a51435c5983a81f64b6432b9a61517b22a684f52ef"
url "https://download.jetbrains.com/webstorm/WebStorm-#{version.before_comma}.dmg"
appcast "https://data.services.jetbrains.com/products/releases?code=WS&latest=true&type=release"
name "WebStorm"
homepage "https://www.jetbrains.com/webstorm/"
auto_updates true
app "WebStorm.app"
uninstall_postflight do
ENV["PATH"].split(File::PATH_SEPARATOR).map { |path| File.join(path, "wstorm") }.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/WebStorm#{version.major_minor}",
"~/Library/Caches/WebStorm#{version.major_minor}",
"~/Library/Logs/WebStorm#{version.major_minor}",
"~/Library/Preferences/WebStorm#{version.major_minor}",
"~/Library/Preferences/jetbrains.webstorm.aaac0500.plist",
"~/Library/Saved Application State/com.jetbrains.WebStorm.savedState",
]
end