From f1c217b32b0f32fbe2159d16dc052455ae34720d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" Date: Sun, 10 Feb 2019 13:56:34 +0000 Subject: [PATCH 1/4] Bump rubocop from 0.63.1 to 0.64.0 in /Library/Homebrew/test Bumps [rubocop](https://github.com/rubocop-hq/rubocop) from 0.63.1 to 0.64.0. - [Release notes](https://github.com/rubocop-hq/rubocop/releases) - [Changelog](https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md) - [Commits](https://github.com/rubocop-hq/rubocop/compare/v0.63.1...v0.64.0) Signed-off-by: dependabot[bot] --- Library/Homebrew/test/Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/test/Gemfile.lock b/Library/Homebrew/test/Gemfile.lock index fa60a178e1..291baf768c 100644 --- a/Library/Homebrew/test/Gemfile.lock +++ b/Library/Homebrew/test/Gemfile.lock @@ -46,7 +46,7 @@ GEM rspec-support (3.8.0) rspec-wait (0.0.9) rspec (>= 3, < 4) - rubocop (0.63.1) + rubocop (0.64.0) jaro_winkler (~> 1.5.1) parallel (~> 1.10) parser (>= 2.5, != 2.5.1.1) From 74dbe00ecadf2fe4b2a3288aa393e1e33708b39c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" Date: Mon, 11 Feb 2019 06:54:15 +0000 Subject: [PATCH 2/4] Bump rubocop from 0.63.1 to 0.64.0 in /Library/Homebrew/vendor Bumps [rubocop](https://github.com/rubocop-hq/rubocop) from 0.63.1 to 0.64.0. - [Release notes](https://github.com/rubocop-hq/rubocop/releases) - [Changelog](https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md) - [Commits](https://github.com/rubocop-hq/rubocop/compare/v0.63.1...v0.64.0) Signed-off-by: dependabot[bot] --- Library/Homebrew/vendor/Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/vendor/Gemfile.lock b/Library/Homebrew/vendor/Gemfile.lock index cbb0bd6da9..c6ab320754 100644 --- a/Library/Homebrew/vendor/Gemfile.lock +++ b/Library/Homebrew/vendor/Gemfile.lock @@ -43,7 +43,7 @@ GEM plist (3.5.0) powerpack (0.1.2) rainbow (3.0.0) - rubocop (0.63.1) + rubocop (0.64.0) jaro_winkler (~> 1.5.1) parallel (~> 1.10) parser (>= 2.5, != 2.5.1.1) From 190deb36b5c84a3d097d239eb4efae099d1f1642 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Mon, 11 Feb 2019 09:45:54 +0000 Subject: [PATCH 3/4] brew vendor-gems: commit updates. --- Library/Homebrew/vendor/bundle-standalone/bundler/setup.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/vendor/bundle-standalone/bundler/setup.rb b/Library/Homebrew/vendor/bundle-standalone/bundler/setup.rb index 11e6185af5..29ffecb742 100644 --- a/Library/Homebrew/vendor/bundle-standalone/bundler/setup.rb +++ b/Library/Homebrew/vendor/bundle-standalone/bundler/setup.rb @@ -37,6 +37,6 @@ $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/powerpack-0.1.2/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rainbow-3.0.0/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/ruby-progressbar-1.10.0/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/unicode-display_width-1.4.1/lib" -$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rubocop-0.63.1/lib" +$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rubocop-0.64.0/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rubocop-rspec-1.32.0/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/ruby-macho-2.1.0/lib" From 3060125c45f8527c51272e553879633cf360c7dc Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Mon, 11 Feb 2019 09:50:09 +0000 Subject: [PATCH 4/4] rubocop: autofix problems. --- .../test/cask/artifact/shared_examples/uninstall_zap.rb | 2 +- Library/Homebrew/test/cask/installer_spec.rb | 2 +- Library/Homebrew/test/descriptions_spec.rb | 4 ++-- Library/Homebrew/test/messages_spec.rb | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Library/Homebrew/test/cask/artifact/shared_examples/uninstall_zap.rb b/Library/Homebrew/test/cask/artifact/shared_examples/uninstall_zap.rb index b77f9599a8..4b6f1bca27 100644 --- a/Library/Homebrew/test/cask/artifact/shared_examples/uninstall_zap.rb +++ b/Library/Homebrew/test/cask/artifact/shared_examples/uninstall_zap.rb @@ -255,7 +255,7 @@ shared_examples "#uninstall_phase or #zap_phase" do .with( "osascript", args: ["-e", 'tell application "System Events" to delete every login item whose name is "Fancy"'], - ) + ) .and_return(instance_double("SystemCommand::Result")) subject.public_send(:"#{artifact_dsl_key}_phase", command: fake_system_command) diff --git a/Library/Homebrew/test/cask/installer_spec.rb b/Library/Homebrew/test/cask/installer_spec.rb index a03290e124..ac19ed13bd 100644 --- a/Library/Homebrew/test/cask/installer_spec.rb +++ b/Library/Homebrew/test/cask/installer_spec.rb @@ -111,7 +111,7 @@ describe Cask::Installer, :cask do expect { Cask::Installer.new(with_installer_manual).install }.to output( - <<~EOS + <<~EOS, ==> Satisfying dependencies ==> Downloading file:#{HOMEBREW_LIBRARY_PATH}/test/support/fixtures/cask/caffeine.zip ==> Verifying SHA-256 checksum for Cask 'with-installer-manual'. diff --git a/Library/Homebrew/test/descriptions_spec.rb b/Library/Homebrew/test/descriptions_spec.rb index 7374068414..9fe327fd0e 100644 --- a/Library/Homebrew/test/descriptions_spec.rb +++ b/Library/Homebrew/test/descriptions_spec.rb @@ -20,7 +20,7 @@ describe Descriptions do descriptions_hash["somedev/external/foo"] = "External foo" expect { subject.print }.to output( - <<~EOS + <<~EOS, homebrew/core/foo: Core foo somedev/external/foo: External foo EOS @@ -33,7 +33,7 @@ describe Descriptions do descriptions_hash["otherdev/external/foo"] = "Other external foo" expect { subject.print }.to output( - <<~EOS + <<~EOS, homebrew/core/foo: Core foo otherdev/external/foo: Other external foo somedev/external/foo: External foo diff --git a/Library/Homebrew/test/messages_spec.rb b/Library/Homebrew/test/messages_spec.rb index ae5a9fadfc..527b35d23e 100644 --- a/Library/Homebrew/test/messages_spec.rb +++ b/Library/Homebrew/test/messages_spec.rb @@ -61,7 +61,7 @@ describe Messages do it "prints caveat details" do expect { messages.display_messages }.to output( - <<~EOS + <<~EOS, ==> Caveats ==> foo Zsh completions were installed @@ -88,7 +88,7 @@ describe Messages do it "prints installation times" do expect { messages.display_messages }.to output( - <<~EOS + <<~EOS, ==> Installation times foo 1.100 s EOS