ballast: fix RuboCop style.

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

View File

@ -1,25 +1,25 @@
cask 'ballast' do
version '1.2.1'
sha256 '947c0c417ddf0fa0abcdb4d8e9b49f9e26bf17bd3590261f0d8ca1acabe8cf97'
cask "ballast" do
version "1.2.1"
sha256 "947c0c417ddf0fa0abcdb4d8e9b49f9e26bf17bd3590261f0d8ca1acabe8cf97"
# github.com/jamsinclair/ballast/ was verified as official when first introduced to the cask
url "https://github.com/jamsinclair/ballast/releases/download/v#{version}/ballast-v#{version}.zip"
appcast 'https://github.com/jamsinclair/ballast/releases.atom'
name 'ballast'
homepage 'https://jamsinclair.nz/ballast'
appcast "https://github.com/jamsinclair/ballast/releases.atom"
name "ballast"
homepage "https://jamsinclair.nz/ballast"
depends_on macos: '>= :sierra'
depends_on macos: ">= :sierra"
app 'ballast.app'
app "ballast.app"
uninstall quit: 'nz.jamsinclair.ballast',
launchctl: 'nz.jamsinclair.ballast-LaunchAtLoginHelper'
uninstall quit: "nz.jamsinclair.ballast",
launchctl: "nz.jamsinclair.ballast-LaunchAtLoginHelper"
zap trash: [
'~/Library/Preferences/nz.jamsinclair.ballast.plist',
'~/Library/Application Scripts/nz.jamsinclair.ballast',
'~/Library/Application Scripts/nz.jamsinclair.ballast-LaunchAtLoginHelper',
'~/Library/Containers/nz.jamsinclair.ballast',
'~/Library/Containers/nz.jamsinclair.ballast-LaunchAtLoginHelper',
]
"~/Library/Preferences/nz.jamsinclair.ballast.plist",
"~/Library/Application Scripts/nz.jamsinclair.ballast",
"~/Library/Application Scripts/nz.jamsinclair.ballast-LaunchAtLoginHelper",
"~/Library/Containers/nz.jamsinclair.ballast",
"~/Library/Containers/nz.jamsinclair.ballast-LaunchAtLoginHelper",
]
end