From 7bddfe2a05b3984be01a537474a0187c71e6c4f8 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Mon, 27 Jul 2020 10:39:10 +0100 Subject: [PATCH] zoomus-outlook-plugin: fix RuboCop style. See https://github.com/Homebrew/brew/pull/7867. --- Casks/zoomus-outlook-plugin.rb | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/Casks/zoomus-outlook-plugin.rb b/Casks/zoomus-outlook-plugin.rb index b1634c91d3b..69cc2313fa3 100644 --- a/Casks/zoomus-outlook-plugin.rb +++ b/Casks/zoomus-outlook-plugin.rb @@ -1,20 +1,20 @@ -cask 'zoomus-outlook-plugin' do +cask "zoomus-outlook-plugin" do version :latest sha256 :no_check - url 'https://zoom.us/client/latest/ZoomMacOutlookPlugin.pkg' - name 'Zoom.us Outlook Plugin' - homepage 'https://www.zoom.us/' + url "https://zoom.us/client/latest/ZoomMacOutlookPlugin.pkg" + name "Zoom.us Outlook Plugin" + homepage "https://www.zoom.us/" - depends_on macos: '<= :mojave' + depends_on macos: "<= :mojave" - pkg 'ZoomMacOutlookPlugin.pkg' + pkg "ZoomMacOutlookPlugin.pkg" uninstall script: { - executable: '/Applications/ZoomOutlookPlugin/Uninstall.app/Contents/MacOS/Uninstall', - sudo: true, - }, - pkgutil: 'ZoomMacOutlookPlugin.pkg', - launchctl: 'us.zoom.pluginagent', - quit: 'us.zoom.pluginagent' + executable: "/Applications/ZoomOutlookPlugin/Uninstall.app/Contents/MacOS/Uninstall", + sudo: true, + }, + pkgutil: "ZoomMacOutlookPlugin.pkg", + launchctl: "us.zoom.pluginagent", + quit: "us.zoom.pluginagent" end