whichspace: fix RuboCop style.

See https://github.com/Homebrew/brew/pull/7867.
This commit is contained in:
Mike McQuaid 2020-07-27 10:38:41 +01:00
parent 5d5d883ce0
commit f975cf4376
No known key found for this signature in database
GPG Key ID: 48A898132FD8EE70
1 changed files with 13 additions and 13 deletions

View File

@ -1,21 +1,21 @@
cask 'whichspace' do
version '0.2.4'
sha256 'd062876e0194438dab6a1dcc9b19df01f7c6ee204e9218579e9e21c085883484'
cask "whichspace" do
version "0.2.4"
sha256 "d062876e0194438dab6a1dcc9b19df01f7c6ee204e9218579e9e21c085883484"
url "https://github.com/gechr/WhichSpace/releases/download/v#{version}/WhichSpace.zip"
appcast 'https://github.com/gechr/WhichSpace/releases.atom'
name 'WhichSpace'
homepage 'https://github.com/gechr/WhichSpace'
appcast "https://github.com/gechr/WhichSpace/releases.atom"
name "WhichSpace"
homepage "https://github.com/gechr/WhichSpace"
depends_on macos: '> :yosemite'
depends_on macos: "> :yosemite"
app 'WhichSpace.app'
app "WhichSpace.app"
uninstall quit: 'io.gechr.WhichSpace'
uninstall quit: "io.gechr.WhichSpace"
zap trash: [
'~/Library/Caches/io.gechr.WhichSpace',
'~/Library/Preferences/io.gechr.WhichSpace.plist',
'~/Library/Saved Application State/io.gechr.WhichSpace.savedState',
]
"~/Library/Caches/io.gechr.WhichSpace",
"~/Library/Preferences/io.gechr.WhichSpace.plist",
"~/Library/Saved Application State/io.gechr.WhichSpace.savedState",
]
end