nomad: fix RuboCop style.

See https://github.com/Homebrew/brew/pull/7867.
This commit is contained in:
Mike McQuaid 2020-07-27 10:31:52 +01:00
parent f013a434cb
commit 8e59f9d47a
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,20 +1,20 @@
cask 'nomad' do
cask "nomad" do
version :latest
sha256 :no_check
url 'https://files.nomad.menu/NoMAD.pkg'
name 'NoMAD'
homepage 'https://nomad.menu/'
url "https://files.nomad.menu/NoMAD.pkg"
name "NoMAD"
homepage "https://nomad.menu/"
depends_on macos: '>= :yosemite'
depends_on macos: ">= :yosemite"
pkg 'NoMAD.pkg'
pkg "NoMAD.pkg"
uninstall pkgutil: 'com.trusourcelabs.NoMAD'
uninstall pkgutil: "com.trusourcelabs.NoMAD"
zap trash: [
'~/Library/Application Support/CrashReporter/NoMAD*',
'~/Library/Logs/DiagnosticReports/NoMAD*',
'~/Library/Preferences/com.trusourcelabs.NoMAD.plist',
]
"~/Library/Application Support/CrashReporter/NoMAD*",
"~/Library/Logs/DiagnosticReports/NoMAD*",
"~/Library/Preferences/com.trusourcelabs.NoMAD.plist",
]
end