You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.2 KiB
31 lines
1.2 KiB
cask 'webstorm-eap' do
|
|
version '2016.1.1'
|
|
sha256 '63540be270ef19adf5b40f3c9b00cf0cabc9f61d2341c97d84c5d35b04cb68ba'
|
|
|
|
url "https://download.jetbrains.com/webstorm/WebStorm-#{version}.dmg"
|
|
name 'WebStorm'
|
|
homepage 'https://confluence.jetbrains.com/display/WI/WebStorm+EAP'
|
|
license :commercial
|
|
|
|
app 'WebStorm.app'
|
|
|
|
uninstall delete: '/usr/local/bin/wstorm'
|
|
|
|
zap delete: [
|
|
"~/.WebStorm#{version.major_minor}",
|
|
# TODO: expand/glob for '~/Library/Preferences/jetbrains.webstorm.*.plist',
|
|
"~/Library/Preferences/WebStorm#{version.major_minor}",
|
|
"~/Library/Application Support/WebStorm#{version.major_minor}",
|
|
"~/Library/Caches/WebStorm#{version.major_minor}",
|
|
"~/Library/Logs/WebStorm#{version.major_minor}",
|
|
]
|
|
|
|
# remove this when this cask is updated to an EAP release
|
|
caveats <<-EOS.undent
|
|
There is currently no EAP preview release. Instead, the latest stable
|
|
version will be installed.
|
|
To receive future EAP releases via the IDE's built-in update system, go to
|
|
Preferences > Appearance & Behavior > System Settings > Updates
|
|
and select the Early Access Program channel.
|
|
EOS
|
|
end
|
|
|