From da1060ac9e66d50f53742e65a036fc9abcddaaf2 Mon Sep 17 00:00:00 2001 From: Cody Cutrer Date: Tue, 10 Oct 2023 08:32:00 -0600 Subject: [PATCH] fix specs --- spec/bundler/multilock_spec.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/spec/bundler/multilock_spec.rb b/spec/bundler/multilock_spec.rb index 5013b67..ee1061f 100644 --- a/spec/bundler/multilock_spec.rb +++ b/spec/bundler/multilock_spec.rb @@ -36,7 +36,7 @@ source "https://rubygems.org" - plugin "bundler-multilock", "~> 1.1" + plugin "bundler-multilock", "~> 1.2" return unless Plugin.installed?("bundler-multilock") Plugin.send(:load_plugin, "bundler-multilock") @@ -52,7 +52,7 @@ source 'https://rubygems.org' - plugin 'bundler-multilock', '~> 1.1' + plugin 'bundler-multilock', '~> 1.2' return unless Plugin.installed?('bundler-multilock') Plugin.send(:load_plugin, 'bundler-multilock') @@ -81,7 +81,7 @@ RUBY File.write("injected.rb", <<~RUBY) - plugin "bundler-multilock", "~> 1.1", path: #{File.expand_path("../..", __dir__).inspect} + plugin "bundler-multilock", "~> 1.2", path: #{File.expand_path("../..", __dir__).inspect} return unless Plugin.installed?("bundler-multilock") Plugin.send(:load_plugin, "bundler-multilock") @@ -789,7 +789,7 @@ def write_gemfile(content) File.write("Gemfile", <<~RUBY) source "https://rubygems.org" - plugin "bundler-multilock", "~> 1.1", path: #{File.expand_path("../..", __dir__).inspect} + plugin "bundler-multilock", "~> 1.2", path: #{File.expand_path("../..", __dir__).inspect} return unless Plugin.installed?("bundler-multilock") Plugin.send(:load_plugin, "bundler-multilock")