contexts: fix RuboCop style.

See https://github.com/Homebrew/brew/pull/7867.
This commit is contained in:
Mike McQuaid 2020-07-27 10:20:53 +01:00
parent 5100de6cf4
commit b3b5a64b9e
No known key found for this signature in database
GPG Key ID: 48A898132FD8EE70
1 changed files with 14 additions and 14 deletions

View File

@ -1,21 +1,21 @@
cask 'contexts' do
version '3.7.1'
sha256 'de5e4a660cc30276155606b539d1ae58684115a3983d69598f1505fcad499a87'
cask "contexts" do
version "3.7.1"
sha256 "de5e4a660cc30276155606b539d1ae58684115a3983d69598f1505fcad499a87"
url "https://contexts.co/releases/Contexts-#{version}.dmg"
appcast 'https://contexts.co/appcasts/stable.xml'
name 'Contexts'
homepage 'https://contexts.co/'
appcast "https://contexts.co/appcasts/stable.xml"
name "Contexts"
homepage "https://contexts.co/"
app 'Contexts.app'
app "Contexts.app"
uninstall quit: 'com.contextsformac.Contexts'
uninstall quit: "com.contextsformac.Contexts"
zap trash: [
'~/Library/Application Support/.com.contextsformac.Contexts.plist',
'~/Library/Application Support/com.contextsformac.Contexts',
'~/Library/Caches/com.contextsformac.Contexts',
'~/Library/Logs/Contexts',
'~/Library/Preferences/com.contextsformac.Contexts.plist',
]
"~/Library/Application Support/.com.contextsformac.Contexts.plist",
"~/Library/Application Support/com.contextsformac.Contexts",
"~/Library/Caches/com.contextsformac.Contexts",
"~/Library/Logs/Contexts",
"~/Library/Preferences/com.contextsformac.Contexts.plist",
]
end