mirror of
https://github.com/donl/homebrew-cask-versions.git
synced 2026-07-16 06:17:14 -06:00
27 lines
863 B
Ruby
27 lines
863 B
Ruby
cask :v1 => 'rubymine' do
|
|
version '7.1.1'
|
|
sha256 '99d7cd14147c5503d17ca1634d95cdcec99c30686b60a492a8bb29eea3a4bba3'
|
|
|
|
url "http://download-cf.jetbrains.com/ruby/RubyMine-#{version}.dmg"
|
|
name 'RubyMine'
|
|
homepage 'http://www.jetbrains.com/ruby/'
|
|
license :commercial
|
|
|
|
app 'RubyMine.app'
|
|
|
|
zap :delete => [
|
|
"~/Library/Application Support/RubyMine#{version.gsub('.','')}",
|
|
"~/Library/Preferences/RubyMine#{version.gsub('.','')}",
|
|
]
|
|
|
|
caveats <<-EOS.undent
|
|
#{token} requires Java 6 like any other IntelliJ-based IDE.
|
|
You can install it with
|
|
|
|
brew cask install caskroom/homebrew-versions/java6
|
|
|
|
The vendor (JetBrains) doesn't support newer versions of Java (yet)
|
|
due to several critical issues, see details at
|
|
https://intellij-support.jetbrains.com/entries/27854363
|
|
EOS
|
|
end
|