homebrew-cask/Casks/rider.rb

27 lines
1.1 KiB
Ruby

cask 'rider' do
version '2020.1.3,201.7846.1'
sha256 'eff27da31b3670982b9a211486b496fb25d0a5e2c487a715cf929b3686df466d'
url "https://download.jetbrains.com/rider/JetBrains.Rider-#{version.before_comma}.dmg"
appcast 'https://data.services.jetbrains.com/products/releases?code=RD&latest=true&type=release'
name 'Jetbrains Rider'
homepage 'https://www.jetbrains.com/rider/'
auto_updates true
app 'Rider.app'
uninstall_postflight do
ENV['PATH'].split(File::PATH_SEPARATOR).map { |path| File.join(path, 'rider') }.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/Rider#{version.major_minor}",
"~/Library/Caches/Rider#{version.major_minor}",
"~/Library/Logs/Rider#{version.major_minor}",
"~/Library/Preferences/Rider#{version.major_minor}",
'~/Library/Preferences/jetbrains.rider.71e559ef.plist',
'~/Library/Saved Application State/com.jetbrains.rider.savedState',
]
end