fog: fix RuboCop style.

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

View File

@ -1,22 +1,22 @@
cask 'fog' do
version '1.4.5'
sha256 'dbf1216fce69ead08e9e9a37b18391d3d65e7f06ae4e6f633e7047832c6b1adc'
cask "fog" do
version "1.4.5"
sha256 "dbf1216fce69ead08e9e9a37b18391d3d65e7f06ae4e6f633e7047832c6b1adc"
url "https://github.com/vitorgalvao/fog/releases/download/#{version}/Fog-#{version}-mac.zip"
appcast 'https://github.com/vitorgalvao/fog/releases.atom'
name 'Fog'
homepage 'https://github.com/vitorgalvao/fog'
appcast "https://github.com/vitorgalvao/fog/releases.atom"
name "Fog"
homepage "https://github.com/vitorgalvao/fog"
app 'Fog.app'
app "Fog.app"
uninstall quit: 'com.vitorgalvao.fog'
uninstall quit: "com.vitorgalvao.fog"
zap trash: [
'~/Library/Application Support/Fog',
'~/Library/Application Support/com.apple.sharedfilelist/com.apple.LSSharedFileList.ApplicationRecentDocuments/com.vitorgalvao.fog.sfl*',
'~/Library/Caches/Fog',
'~/Library/Preferences/com.vitorgalvao.fog.helper.plist',
'~/Library/Preferences/com.vitorgalvao.fog.plist',
'~/Library/Saved Application State/com.vitorgalvao.fog.savedState',
]
"~/Library/Application Support/Fog",
"~/Library/Application Support/com.apple.sharedfilelist/com.apple.LSSharedFileList.ApplicationRecentDocuments/com.vitorgalvao.fog.sfl*",
"~/Library/Caches/Fog",
"~/Library/Preferences/com.vitorgalvao.fog.helper.plist",
"~/Library/Preferences/com.vitorgalvao.fog.plist",
"~/Library/Saved Application State/com.vitorgalvao.fog.savedState",
]
end