apple-juice: fix RuboCop style.

See https://github.com/Homebrew/brew/pull/7867.
This commit is contained in:
Mike McQuaid 2020-07-27 10:16:19 +01:00
parent 23a65917ba
commit f26861e2f6
No known key found for this signature in database
GPG Key ID: 48A898132FD8EE70
1 changed files with 12 additions and 12 deletions

View File

@ -1,20 +1,20 @@
cask 'apple-juice' do
version '1.10.2'
sha256 'dedbbf56a4d972ed0ad987be5b2577f2c59c55b0b9e4effd05c60f3c29773677'
cask "apple-juice" do
version "1.10.2"
sha256 "dedbbf56a4d972ed0ad987be5b2577f2c59c55b0b9e4effd05c60f3c29773677"
url "https://github.com/raphaelhanneken/apple-juice/releases/download/#{version}/Apple.Juice.dmg"
appcast 'https://github.com/raphaelhanneken/apple-juice/releases.atom'
name 'Apple Juice'
homepage 'https://github.com/raphaelhanneken/apple-juice'
appcast "https://github.com/raphaelhanneken/apple-juice/releases.atom"
name "Apple Juice"
homepage "https://github.com/raphaelhanneken/apple-juice"
depends_on macos: '>= :sierra'
depends_on macos: ">= :sierra"
app 'Apple Juice.app'
app "Apple Juice.app"
uninstall quit: 'io.raphaelhanneken.applejuice'
uninstall quit: "io.raphaelhanneken.applejuice"
zap trash: [
'~/Library/Caches/io.raphaelhanneken.applejuice',
'~/Library/Preferences/io.raphaelhanneken.applejuice.plist',
]
"~/Library/Caches/io.raphaelhanneken.applejuice",
"~/Library/Preferences/io.raphaelhanneken.applejuice.plist",
]
end