forked from Homebrew/homebrew-cask
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazure-data-studio.rb
22 lines (18 loc) · 997 Bytes
/
azure-data-studio.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
cask 'azure-data-studio' do
version '1.11.0'
sha256 '91f7b02a340a6db0a64a4819331739a0608c6a8a326d4bfa055340efb02dfdd7'
# github.com/Microsoft/azuredatastudio was verified as official when first introduced to the cask
url "https://github.com/Microsoft/azuredatastudio/releases/download/#{version}/azuredatastudio-macos-#{version}.zip"
appcast 'https://github.com/Microsoft/azuredatastudio/releases.atom'
name 'Azure Data Studio'
homepage 'https://docs.microsoft.com/en-us/sql/azure-data-studio/'
auto_updates true
app 'Azure Data Studio.app'
binary "#{appdir}/Azure Data Studio.app/Contents/Resources/app/bin/code", target: 'azuredatastudio'
zap trash: [
'~/Library/Application Support/azuredatastudio',
'~/Library/Preferences/com.azuredatastudio.oss.helper.plist',
'~/Library/Preferences/com.azuredatastudio.oss.plist',
'~/Library/Saved Application State/com.azuredatastudio.oss.savedState',
]
end