pine: fix RuboCop style.

See https://github.com/Homebrew/brew/pull/7867.
This commit is contained in:
Mike McQuaid 2020-07-27 10:33:21 +01:00
parent a2d1846aca
commit 91c5d509db
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 'pine' do
version '0.1.0'
sha256 '046f2603f7e4dcdc7535c6a5652dbfbab5cbe93fa36ca161f8a8029b53770b76'
cask "pine" do
version "0.1.0"
sha256 "046f2603f7e4dcdc7535c6a5652dbfbab5cbe93fa36ca161f8a8029b53770b76"
url "https://github.com/lukakerr/pine/releases/download/#{version}/Pine-#{version}.zip"
appcast 'https://github.com/lukakerr/pine/releases.atom'
name 'Pine'
homepage 'https://github.com/lukakerr/pine'
appcast "https://github.com/lukakerr/pine/releases.atom"
name "Pine"
homepage "https://github.com/lukakerr/pine"
depends_on macos: '>= :sierra'
depends_on macos: ">= :sierra"
app 'Pine.app'
app "Pine.app"
zap trash: [
'~/Library/Application Support/Pine',
'~/Library/Application Support/com.apple.sharedfilelist/com.apple.LSSharedFileList.ApplicationRecentDocuments/io.github.lukakerr.pine.sfl2',
'~/Library/Caches/io.github.lukakerr.Pine',
'~/Library/Preferences/io.github.lukakerr.Pine.plist',
'~/Library/Saved Application State/io.github.lukakerr.Pine.savedState',
'~/Library/WebKit/io.github.lukakerr.Pine',
]
"~/Library/Application Support/Pine",
"~/Library/Application Support/com.apple.sharedfilelist/com.apple.LSSharedFileList.ApplicationRecentDocuments/io.github.lukakerr.pine.sfl2",
"~/Library/Caches/io.github.lukakerr.Pine",
"~/Library/Preferences/io.github.lukakerr.Pine.plist",
"~/Library/Saved Application State/io.github.lukakerr.Pine.savedState",
"~/Library/WebKit/io.github.lukakerr.Pine",
]
end