anki: fix RuboCop style.

See https://github.com/Homebrew/brew/pull/7867.
This commit is contained in:
Mike McQuaid 2020-07-27 10:15:59 +01:00
parent b39ccb9ae0
commit 4239613379
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,19 +1,19 @@
cask 'anki' do
version '2.1.28'
sha256 'c4eec38d80804fcd9e82d24a4ee5d4fbc581b8f5de1e1f08056f80b4bef60a2d'
cask "anki" do
version "2.1.28"
sha256 "c4eec38d80804fcd9e82d24a4ee5d4fbc581b8f5de1e1f08056f80b4bef60a2d"
# github.com/ankitects/anki/ was verified as official when first introduced to the cask
url "https://github.com/ankitects/anki/releases/download/#{version}/anki-#{version}-mac.dmg"
appcast 'https://changes.ankiweb.net/README.md'
name 'Anki'
homepage 'https://apps.ankiweb.net/'
appcast "https://changes.ankiweb.net/README.md"
name "Anki"
homepage "https://apps.ankiweb.net/"
depends_on macos: '>= :sierra'
depends_on macos: ">= :sierra"
app 'Anki.app'
app "Anki.app"
zap trash: [
'~/Library/Application Support/Anki',
'~/Library/Application Support/Anki2',
]
"~/Library/Application Support/Anki",
"~/Library/Application Support/Anki2",
]
end