airflow: fix RuboCop style.

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

View File

@ -1,22 +1,22 @@
cask 'airflow' do cask "airflow" do
version '3.1.3u1' version "3.1.3u1"
sha256 'd7dd65cae80df5bb073ab7ed12d5552d2be727c5babac400ac9a84372cabe544' sha256 "d7dd65cae80df5bb073ab7ed12d5552d2be727c5babac400ac9a84372cabe544"
# cdn.downloads.iocave.net/Airflow/ was verified as official when first introduced to the cask # cdn.downloads.iocave.net/Airflow/ was verified as official when first introduced to the cask
url "https://cdn.downloads.iocave.net/Airflow/Airflow%20#{version}.zip" url "https://cdn.downloads.iocave.net/Airflow/Airflow%20#{version}.zip"
appcast 'https://macupdater.net/cgi-bin/check_urls/check_url_redirect.cgi?url=https://airflowapp.com/download/latest?mac' appcast "https://macupdater.net/cgi-bin/check_urls/check_url_redirect.cgi?url=https://airflowapp.com/download/latest?mac"
name 'Airflow' name "Airflow"
homepage 'https://airflowapp.com/' homepage "https://airflowapp.com/"
auto_updates true auto_updates true
depends_on macos: '>= :sierra' depends_on macos: ">= :sierra"
app 'Airflow.app' app "Airflow.app"
zap trash: [ zap trash: [
'~/Library/Application Support/Airflow', "~/Library/Application Support/Airflow",
'~/Library/Caches/com.bitcavehq.Airflow', "~/Library/Caches/com.bitcavehq.Airflow",
'~/Library/Preferences/com.bitcavehq.Airflow.plist', "~/Library/Preferences/com.bitcavehq.Airflow.plist",
'~/Library/Saved Application State/com.bitcavehq.Airflow.savedState', "~/Library/Saved Application State/com.bitcavehq.Airflow.savedState",
] ]
end end