qtpass: fix RuboCop style.

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

View File

@ -1,14 +1,14 @@
cask 'qtpass' do
version '1.3.2'
sha256 '04a091602bfd8da1b19e95fcf9cd48df6a544a44a4a1e97cccfb950df90512ef'
cask "qtpass" do
version "1.3.2"
sha256 "04a091602bfd8da1b19e95fcf9cd48df6a544a44a4a1e97cccfb950df90512ef"
# github.com/IJHack/qtpass/ was verified as official when first introduced to the cask
url "https://github.com/IJHack/qtpass/releases/download/v#{version}/qtpass-#{version}.dmg"
appcast 'https://github.com/IJHack/qtpass/releases.atom'
name 'QtPass'
homepage 'https://qtpass.org/'
appcast "https://github.com/IJHack/qtpass/releases.atom"
name "QtPass"
homepage "https://qtpass.org/"
depends_on macos: '>= :sierra'
depends_on macos: ">= :sierra"
app 'QtPass.app'
app "QtPass.app"
end