From b3b5a64b9ed972a0ab3155b3a0954aacef78c8dc Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Mon, 27 Jul 2020 10:20:53 +0100 Subject: [PATCH] contexts: fix RuboCop style. See https://github.com/Homebrew/brew/pull/7867. --- Casks/contexts.rb | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/Casks/contexts.rb b/Casks/contexts.rb index 3408eb38a3c..bedd65d38e2 100644 --- a/Casks/contexts.rb +++ b/Casks/contexts.rb @@ -1,21 +1,21 @@ -cask 'contexts' do - version '3.7.1' - sha256 'de5e4a660cc30276155606b539d1ae58684115a3983d69598f1505fcad499a87' +cask "contexts" do + version "3.7.1" + sha256 "de5e4a660cc30276155606b539d1ae58684115a3983d69598f1505fcad499a87" url "https://contexts.co/releases/Contexts-#{version}.dmg" - appcast 'https://contexts.co/appcasts/stable.xml' - name 'Contexts' - homepage 'https://contexts.co/' + appcast "https://contexts.co/appcasts/stable.xml" + name "Contexts" + homepage "https://contexts.co/" - app 'Contexts.app' + app "Contexts.app" - uninstall quit: 'com.contextsformac.Contexts' + uninstall quit: "com.contextsformac.Contexts" zap trash: [ - '~/Library/Application Support/.com.contextsformac.Contexts.plist', - '~/Library/Application Support/com.contextsformac.Contexts', - '~/Library/Caches/com.contextsformac.Contexts', - '~/Library/Logs/Contexts', - '~/Library/Preferences/com.contextsformac.Contexts.plist', - ] + "~/Library/Application Support/.com.contextsformac.Contexts.plist", + "~/Library/Application Support/com.contextsformac.Contexts", + "~/Library/Caches/com.contextsformac.Contexts", + "~/Library/Logs/Contexts", + "~/Library/Preferences/com.contextsformac.Contexts.plist", + ] end