ferdi: fix RuboCop style.

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

View File

@ -1,30 +1,30 @@
cask 'ferdi' do
version '5.5.0'
sha256 '7e9d5ff9f4780636bc2595127f4a86fc77b794d87e6de992fa41e7d8f9c95380'
cask "ferdi" do
version "5.5.0"
sha256 "7e9d5ff9f4780636bc2595127f4a86fc77b794d87e6de992fa41e7d8f9c95380"
# github.com/getferdi/ferdi/ was verified as official when first introduced to the cask
url "https://github.com/getferdi/ferdi/releases/download/v#{version}/Ferdi-#{version}.dmg"
appcast 'https://github.com/getferdi/ferdi/releases.atom'
name 'Ferdi'
homepage 'https://getferdi.com/'
appcast "https://github.com/getferdi/ferdi/releases.atom"
name "Ferdi"
homepage "https://getferdi.com/"
auto_updates true
app 'Ferdi.app'
app "Ferdi.app"
uninstall quit: 'com.kytwb.ferdi',
delete: '/Library/Logs/DiagnosticReports/Ferdi Helper_.*wakeups_resource.diag'
uninstall quit: "com.kytwb.ferdi",
delete: "/Library/Logs/DiagnosticReports/Ferdi Helper_.*wakeups_resource.diag"
zap trash: [
'~/Library/Application Support/Caches/ferdi-updater',
'~/Library/Application Support/Ferdi',
'~/Library/Caches/com.kytwb.ferdi',
'~/Library/Caches/com.kytwb.ferdi.ShipIt',
'~/Library/Logs/Ferdi',
'~/Library/Preferences/ByHost/com.kytwb.ferdi.ShipIt.*.plist',
'~/Library/Preferences/com.electron.ferdi.helper.plist',
'~/Library/Preferences/com.electron.ferdi.plist',
'~/Library/Preferences/com.kytwb.ferdi.plist',
'~/Library/Saved Application State/com.kytwb.ferdi.savedState',
]
"~/Library/Application Support/Caches/ferdi-updater",
"~/Library/Application Support/Ferdi",
"~/Library/Caches/com.kytwb.ferdi",
"~/Library/Caches/com.kytwb.ferdi.ShipIt",
"~/Library/Logs/Ferdi",
"~/Library/Preferences/ByHost/com.kytwb.ferdi.ShipIt.*.plist",
"~/Library/Preferences/com.electron.ferdi.helper.plist",
"~/Library/Preferences/com.electron.ferdi.plist",
"~/Library/Preferences/com.kytwb.ferdi.plist",
"~/Library/Saved Application State/com.kytwb.ferdi.savedState",
]
end