boop: fix RuboCop style.

See https://github.com/Homebrew/brew/pull/7867.
This commit is contained in:
Mike McQuaid 2020-07-27 10:18:37 +01:00
parent da8e11565c
commit 78a8ebab23
No known key found for this signature in database
GPG Key ID: 48A898132FD8EE70
1 changed files with 11 additions and 11 deletions

View File

@ -1,19 +1,19 @@
cask 'boop' do
version '1.2.1'
sha256 '9a8aa41f8ffe62596572aa2c4effbccef6e686e3515932bd22713d1825b8f5d8'
cask "boop" do
version "1.2.1"
sha256 "9a8aa41f8ffe62596572aa2c4effbccef6e686e3515932bd22713d1825b8f5d8"
# github.com/IvanMathy/Boop was verified as official when first introduced to the cask
url "https://github.com/IvanMathy/Boop/releases/download/#{version}/Boop.zip"
appcast 'https://github.com/IvanMathy/Boop/releases.atom'
name 'Boop'
homepage 'https://boop.okat.best/'
appcast "https://github.com/IvanMathy/Boop/releases.atom"
name "Boop"
homepage "https://boop.okat.best/"
depends_on macos: '>= :mojave'
depends_on macos: ">= :mojave"
app 'Boop.app'
app "Boop.app"
zap trash: [
'~/Library/Application Scripts/com.okatbest.boop',
'~/Library/Containers/com.okatbest.boop',
]
"~/Library/Application Scripts/com.okatbest.boop",
"~/Library/Containers/com.okatbest.boop",
]
end