deco: fix RuboCop style.

See https://github.com/Homebrew/brew/pull/7867.
This commit is contained in:
Mike McQuaid 2020-07-27 10:21:47 +01:00
parent 02b48c6459
commit b26bee53cb
No known key found for this signature in database
GPG Key ID: 48A898132FD8EE70
1 changed files with 10 additions and 10 deletions

View File

@ -1,20 +1,20 @@
cask 'deco' do
version '0.7.1'
sha256 'cd9d9b553d9fcb706bacba94cbbf7ec80a77609f5505d485b2ebad7c16a8ffba'
cask "deco" do
version "0.7.1"
sha256 "cd9d9b553d9fcb706bacba94cbbf7ec80a77609f5505d485b2ebad7c16a8ffba"
# github.com/decosoftware/deco-ide/ was verified as official when first introduced to the cask
url "https://github.com/decosoftware/deco-ide/releases/download/v#{version}/Deco-#{version}.pkg"
appcast 'https://github.com/decosoftware/deco-ide/releases.atom'
name 'Deco'
homepage 'https://www.decosoftware.com/'
appcast "https://github.com/decosoftware/deco-ide/releases.atom"
name "Deco"
homepage "https://www.decosoftware.com/"
# pkg cannot be installed automatically and the .zip of the `app` has errors
installer manual: "Deco-#{version}.pkg"
uninstall pkgutil: 'com.decosoftware.Deco'
uninstall pkgutil: "com.decosoftware.Deco"
zap trash: [
'~/.Deco',
'~/Library/Application Support/com.decosoftware.Deco',
]
"~/.Deco",
"~/Library/Application Support/com.decosoftware.Deco",
]
end