From 8ad92aa400770865ae58334c356e0b756455847f Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Mon, 27 Jul 2020 10:34:27 +0100 Subject: [PATCH] qtpass: fix RuboCop style. See https://github.com/Homebrew/brew/pull/7867. --- Casks/qtpass.rb | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Casks/qtpass.rb b/Casks/qtpass.rb index 657d0b9084a..10d2ba79bb3 100644 --- a/Casks/qtpass.rb +++ b/Casks/qtpass.rb @@ -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