squirrelsql: fix RuboCop style.

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

View File

@ -1,12 +1,12 @@
cask 'squirrelsql' do
version '4.1.0'
sha256 'ab49aeb1f57ef857202972102e3d7cebe5f52d531a0198c193c4ecc782d9c2e8'
cask "squirrelsql" do
version "4.1.0"
sha256 "ab49aeb1f57ef857202972102e3d7cebe5f52d531a0198c193c4ecc782d9c2e8"
# sourceforge.net/squirrel-sql/ was verified as official when first introduced to the cask
url "https://downloads.sourceforge.net/squirrel-sql/1-stable/#{version}/squirrel-sql-#{version}-MACOSX-install.jar"
appcast 'https://sourceforge.net/projects/squirrel-sql/rss?path=/1-stable'
name 'SQuirrel SQL'
homepage 'http://www.squirrelsql.org/'
appcast "https://sourceforge.net/projects/squirrel-sql/rss?path=/1-stable"
name "SQuirrel SQL"
homepage "http://www.squirrelsql.org/"
container type: :naked
@ -14,7 +14,7 @@ cask 'squirrelsql' do
preflight do
# shim script (https://github.com/Homebrew/homebrew-cask/issues/18809)
File.open(installoptions, 'w') do |f|
File.open(installoptions, "w") do |f|
f.print <<~EOS
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<AutomatedInstallation langpack="eng">
@ -70,18 +70,20 @@ cask 'squirrelsql' do
end
postflight do
system_command '/usr/bin/java', args: ['-jar', "#{staged_path}/squirrel-sql-#{version}-MACOSX-install.jar", installoptions.to_s]
system_command "/usr/bin/java",
args: ["-jar", "#{staged_path}/squirrel-sql-#{version}-MACOSX-install.jar", installoptions.to_s]
end
uninstall_preflight do
system_command '/usr/bin/java', args: ['-jar', "#{appdir}/SQuirreLSQL.app/Uninstaller/uninstaller.jar", '-f', '-c']
system_command "/usr/bin/java",
args: ["-jar", "#{appdir}/SQuirreLSQL.app/Uninstaller/uninstaller.jar", "-f", "-c"]
end
uninstall delete: "#{appdir}/SQuirreLSQL.app"
zap trash: '~/.squirrel-sql'
zap trash: "~/.squirrel-sql"
caveats do
depends_on_java '8+'
depends_on_java "8+"
end
end