forked from Homebrew/homebrew-cask
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathboostnote.rb
26 lines (21 loc) · 935 Bytes
/
boostnote.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
cask 'boostnote' do
version '0.12.1'
sha256 'd682e9659e27006d8f725249198caf30bf56c0bc138e4931fde276c0b06df29a'
# github.com/BoostIO/boost-releases was verified as official when first introduced to the cask
url "https://github.com/BoostIO/boost-releases/releases/download/v#{version}/Boostnote-mac.zip"
appcast 'https://github.com/BoostIO/boost-releases/releases.atom'
name 'Boostnote'
homepage 'https://boostnote.io/'
auto_updates true
app 'Boostnote.app'
uninstall signal: [
['TERM', 'com.maisin.boost.helper'],
['TERM', 'com.maisin.boost'],
]
zap trash: [
'~/Library/Application Support/boost',
'~/Library/Preferences/com.maisin.boost.plist',
'~/Library/Preferences/com.maisin.boost.helper.plist',
'~/Library/Saved Application State/com.maisin.boost.savedState',
]
end