base: fix RuboCop style.

See https://github.com/Homebrew/brew/pull/7867.
This commit is contained in:
Mike McQuaid 2020-07-27 10:17:36 +01:00
parent 4e27399998
commit 051aeea99f
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 'base' do
version '2.5.1'
sha256 '42ac2783562f872f17de667c1c450b6bd0f936effc010bdbcceb49d13efef3ce'
cask "base" do
version "2.5.1"
sha256 "42ac2783562f872f17de667c1c450b6bd0f936effc010bdbcceb49d13efef3ce"
url "https://files.menial.co.uk/base/base_#{version}.zip"
appcast 'https://update.menial.co.uk/software/base/'
name 'Menial Base'
homepage 'https://menial.co.uk/base/'
appcast "https://update.menial.co.uk/software/base/"
name "Menial Base"
homepage "https://menial.co.uk/base/"
depends_on macos: '>= :mojave'
depends_on macos: ">= :mojave"
app 'Base.app'
app "Base.app"
zap trash: [
'~/Library/Application Support/Base',
'~/Library/Application Support/com.apple.sharedfilelist/com.apple.LSSharedFileList.ApplicationRecentDocuments/uk.co.menial.base.sfl*',
'~/Library/Caches/com.apple.helpd/Generated/uk.co.menial.base.help*',
'~/Library/Caches/com.apple.helpd/SDMHelpData/Other/English/HelpSDMIndexFile/uk.co.menial.base.help*',
'~/Library/Caches/uk.co.menial.Base',
'~/Library/Preferences/uk.co.menial.Base.plist',
]
"~/Library/Application Support/Base",
"~/Library/Application Support/com.apple.sharedfilelist/com.apple.LSSharedFileList.ApplicationRecentDocuments/uk.co.menial.base.sfl*",
"~/Library/Caches/com.apple.helpd/Generated/uk.co.menial.base.help*",
"~/Library/Caches/com.apple.helpd/SDMHelpData/Other/English/HelpSDMIndexFile/uk.co.menial.base.help*",
"~/Library/Caches/uk.co.menial.Base",
"~/Library/Preferences/uk.co.menial.Base.plist",
]
end