goodsync: fix RuboCop style.

See https://github.com/Homebrew/brew/pull/7867.
This commit is contained in:
Mike McQuaid 2020-07-27 10:25:33 +01:00
parent 6006502ff3
commit 9c9642886d
No known key found for this signature in database
GPG Key ID: 48A898132FD8EE70
1 changed files with 8 additions and 8 deletions

View File

@ -1,14 +1,14 @@
cask 'goodsync' do
version '11.2.7.9'
sha256 '12f6246358cefc6e56baae9546a7d776667e1ecc7586026b32151a499830b9a7'
cask "goodsync" do
version "11.2.7.9"
sha256 "12f6246358cefc6e56baae9546a7d776667e1ecc7586026b32151a499830b9a7"
url "https://www.goodsync.com/download/goodsync-v#{version.major}-mac.dmg"
appcast 'https://www.goodsync.com/download?os=macos',
appcast "https://www.goodsync.com/download?os=macos",
must_contain: version.major_minor_patch
name 'GoodSync'
homepage 'https://www.goodsync.com/'
name "GoodSync"
homepage "https://www.goodsync.com/"
depends_on macos: '>= :yosemite'
depends_on macos: ">= :yosemite"
app 'GoodSync.app'
app "GoodSync.app"
end