From 8fbba496fef7e7be6847e47175c800ca445b6497 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Mon, 27 Jul 2020 10:17:27 +0100 Subject: [PATCH] ballast: fix RuboCop style. See https://github.com/Homebrew/brew/pull/7867. --- Casks/ballast.rb | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/Casks/ballast.rb b/Casks/ballast.rb index 42ab847cc04..ddc8fbe5406 100644 --- a/Casks/ballast.rb +++ b/Casks/ballast.rb @@ -1,25 +1,25 @@ -cask 'ballast' do - version '1.2.1' - sha256 '947c0c417ddf0fa0abcdb4d8e9b49f9e26bf17bd3590261f0d8ca1acabe8cf97' +cask "ballast" do + version "1.2.1" + sha256 "947c0c417ddf0fa0abcdb4d8e9b49f9e26bf17bd3590261f0d8ca1acabe8cf97" # github.com/jamsinclair/ballast/ was verified as official when first introduced to the cask url "https://github.com/jamsinclair/ballast/releases/download/v#{version}/ballast-v#{version}.zip" - appcast 'https://github.com/jamsinclair/ballast/releases.atom' - name 'ballast' - homepage 'https://jamsinclair.nz/ballast' + appcast "https://github.com/jamsinclair/ballast/releases.atom" + name "ballast" + homepage "https://jamsinclair.nz/ballast" - depends_on macos: '>= :sierra' + depends_on macos: ">= :sierra" - app 'ballast.app' + app "ballast.app" - uninstall quit: 'nz.jamsinclair.ballast', - launchctl: 'nz.jamsinclair.ballast-LaunchAtLoginHelper' + uninstall quit: "nz.jamsinclair.ballast", + launchctl: "nz.jamsinclair.ballast-LaunchAtLoginHelper" zap trash: [ - '~/Library/Preferences/nz.jamsinclair.ballast.plist', - '~/Library/Application Scripts/nz.jamsinclair.ballast', - '~/Library/Application Scripts/nz.jamsinclair.ballast-LaunchAtLoginHelper', - '~/Library/Containers/nz.jamsinclair.ballast', - '~/Library/Containers/nz.jamsinclair.ballast-LaunchAtLoginHelper', - ] + "~/Library/Preferences/nz.jamsinclair.ballast.plist", + "~/Library/Application Scripts/nz.jamsinclair.ballast", + "~/Library/Application Scripts/nz.jamsinclair.ballast-LaunchAtLoginHelper", + "~/Library/Containers/nz.jamsinclair.ballast", + "~/Library/Containers/nz.jamsinclair.ballast-LaunchAtLoginHelper", + ] end