barrier: fix RuboCop style.

See https://github.com/Homebrew/brew/pull/7867.
This commit is contained in:
Mike McQuaid 2020-07-27 10:17:34 +01:00
parent 2d8a831364
commit 0ec8fbd96b
No known key found for this signature in database
GPG Key ID: 48A898132FD8EE70
1 changed files with 11 additions and 11 deletions

View File

@ -1,18 +1,18 @@
cask 'barrier' do
version '2.3.3'
sha256 'fc6a002d796453eba7a77b9df107af0f972b6e807268e880c88950bde819a40d'
cask "barrier" do
version "2.3.3"
sha256 "fc6a002d796453eba7a77b9df107af0f972b6e807268e880c88950bde819a40d"
url "https://github.com/debauchee/barrier/releases/download/v#{version}/Barrier-#{version}-Release.dmg"
appcast 'https://github.com/debauchee/barrier/releases.atom'
name 'Barrier'
homepage 'https://github.com/debauchee/barrier/'
appcast "https://github.com/debauchee/barrier/releases.atom"
name "Barrier"
homepage "https://github.com/debauchee/barrier/"
depends_on macos: '>= :sierra'
depends_on macos: ">= :sierra"
app 'Barrier.app'
app "Barrier.app"
zap trash: [
'~/Library/Application Support/barrier',
'~/Library/Saved Application State/barrier.savedState',
]
"~/Library/Application Support/barrier",
"~/Library/Saved Application State/barrier.savedState",
]
end