homebrew-cask/Casks/rubymine.rb

28 lines
1.1 KiB
Ruby

cask 'rubymine' do
version '2017.2.4,172.4155.44'
sha256 '180e82091f8fd1eac0914e087a3f8c7a9c3ff81b9e7c619bc1c715e86d4bda63'
url "https://download.jetbrains.com/ruby/RubyMine-#{version.before_comma}.dmg"
appcast 'https://data.services.jetbrains.com/products/releases?code=RM&latest=true&type=release',
checkpoint: '516ffdfb58ba8e55ccb707f9a4d5fcb70518ddc1e53d19b1ce46ac91cf37d606'
name 'RubyMine'
homepage 'https://www.jetbrains.com/ruby/'
auto_updates true
app 'RubyMine.app'
uninstall_postflight do
ENV['PATH'].split(File::PATH_SEPARATOR).map { |path| File.join(path, 'mine') }.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 delete: [
"~/Library/Caches/RubyMine#{version.major_minor}",
"~/Library/Logs/RubyMine#{version.major_minor}",
],
trash: [
"~/Library/Application Support/RubyMine#{version.major_minor}",
"~/Library/Preferences/RubyMine#{version.major_minor}",
]
end