homebrew-cask/Casks/webstorm.rb

27 lines
1.2 KiB
Ruby

cask 'webstorm' do
version '2020.1,201.6668.106'
sha256 '5f1ad16341852be3b9a06de1776f3c01231ae8733fdc814a96db31dcf34d3468'
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 { |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/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