From 49858bb0e338d7027001be24b9b56e7013e1c344 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Mon, 27 Jul 2020 10:28:41 +0100 Subject: [PATCH] latest: fix RuboCop style. See https://github.com/Homebrew/brew/pull/7867. --- Casks/latest.rb | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/Casks/latest.rb b/Casks/latest.rb index 86e141718e2..f4e57f8918b 100644 --- a/Casks/latest.rb +++ b/Casks/latest.rb @@ -1,21 +1,21 @@ -cask 'latest' do - version '0.6.3' - sha256 '73af1699f62547204352914995747237d25e7701f88d8a936a25219f605c0c78' +cask "latest" do + version "0.6.3" + sha256 "73af1699f62547204352914995747237d25e7701f88d8a936a25219f605c0c78" - url 'https://max.codes/latest/Latest.zip' - appcast 'https://max.codes/latest/update.xml' - name 'Latest' - homepage 'https://max.codes/latest' + url "https://max.codes/latest/Latest.zip" + appcast "https://max.codes/latest/update.xml" + name "Latest" + homepage "https://max.codes/latest" auto_updates true - depends_on macos: '>= :sierra' + depends_on macos: ">= :sierra" - app 'Latest.app' + app "Latest.app" zap trash: [ - '~/Library/Caches/com.max-langer.Latest', - '~/Library/Cookies/com.max-langer.Latest.binarycookies', - '~/Library/Preferences/com.max-langer.Latest.plist', - '~/Library/Saved Application State/com.max-langer.Latest.savedState', - ] + "~/Library/Caches/com.max-langer.Latest", + "~/Library/Cookies/com.max-langer.Latest.binarycookies", + "~/Library/Preferences/com.max-langer.Latest.plist", + "~/Library/Saved Application State/com.max-langer.Latest.savedState", + ] end