diff --git a/Library/Homebrew/Gemfile.lock b/Library/Homebrew/Gemfile.lock index f7075e0d4e..05886dd383 100644 --- a/Library/Homebrew/Gemfile.lock +++ b/Library/Homebrew/Gemfile.lock @@ -148,6 +148,7 @@ GEM PLATFORMS aarch64-linux + arm-linux arm64-darwin x86_64-darwin x86_64-linux diff --git a/Library/Homebrew/vendor/bundle/bundler/setup.rb b/Library/Homebrew/vendor/bundle/bundler/setup.rb index f63fa694d5..861113fd98 100644 --- a/Library/Homebrew/vendor/bundle/bundler/setup.rb +++ b/Library/Homebrew/vendor/bundle/bundler/setup.rb @@ -65,7 +65,7 @@ $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/racc-1.8.1/lib") $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/parser-3.3.6.0/lib") $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/patchelf-1.5.1/lib") -$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/plist-3.7.1/lib") +$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/plist-3.7.2/lib") $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/extensions/arm64-darwin-20/#{Gem.extension_api_version}/prism-1.3.0") $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/prism-1.3.0/lib") $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/pry-0.15.2/lib") diff --git a/Library/Homebrew/vendor/bundle/ruby/3.3.0/gems/plist-3.7.1/LICENSE.txt b/Library/Homebrew/vendor/bundle/ruby/3.3.0/gems/plist-3.7.2/LICENSE.txt similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/3.3.0/gems/plist-3.7.1/LICENSE.txt rename to Library/Homebrew/vendor/bundle/ruby/3.3.0/gems/plist-3.7.2/LICENSE.txt diff --git a/Library/Homebrew/vendor/bundle/ruby/3.3.0/gems/plist-3.7.1/lib/plist.rb b/Library/Homebrew/vendor/bundle/ruby/3.3.0/gems/plist-3.7.2/lib/plist.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/3.3.0/gems/plist-3.7.1/lib/plist.rb rename to Library/Homebrew/vendor/bundle/ruby/3.3.0/gems/plist-3.7.2/lib/plist.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/3.3.0/gems/plist-3.7.1/lib/plist/generator.rb b/Library/Homebrew/vendor/bundle/ruby/3.3.0/gems/plist-3.7.2/lib/plist/generator.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/3.3.0/gems/plist-3.7.1/lib/plist/generator.rb rename to Library/Homebrew/vendor/bundle/ruby/3.3.0/gems/plist-3.7.2/lib/plist/generator.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/3.3.0/gems/plist-3.7.1/lib/plist/parser.rb b/Library/Homebrew/vendor/bundle/ruby/3.3.0/gems/plist-3.7.2/lib/plist/parser.rb similarity index 99% rename from Library/Homebrew/vendor/bundle/ruby/3.3.0/gems/plist-3.7.1/lib/plist/parser.rb rename to Library/Homebrew/vendor/bundle/ruby/3.3.0/gems/plist-3.7.2/lib/plist/parser.rb index 038b194387..7a4ce12977 100755 --- a/Library/Homebrew/vendor/bundle/ruby/3.3.0/gems/plist-3.7.1/lib/plist/parser.rb +++ b/Library/Homebrew/vendor/bundle/ruby/3.3.0/gems/plist-3.7.2/lib/plist/parser.rb @@ -56,7 +56,7 @@ module Plist def text(contents) if @open.last - @open.last.text ||= '' + @open.last.text ||= ''.dup @open.last.text.concat(contents) end end diff --git a/Library/Homebrew/vendor/bundle/ruby/3.3.0/gems/plist-3.7.1/lib/plist/version.rb b/Library/Homebrew/vendor/bundle/ruby/3.3.0/gems/plist-3.7.2/lib/plist/version.rb similarity index 57% rename from Library/Homebrew/vendor/bundle/ruby/3.3.0/gems/plist-3.7.1/lib/plist/version.rb rename to Library/Homebrew/vendor/bundle/ruby/3.3.0/gems/plist-3.7.2/lib/plist/version.rb index 6417e8f9b4..8715acfe5d 100644 --- a/Library/Homebrew/vendor/bundle/ruby/3.3.0/gems/plist-3.7.1/lib/plist/version.rb +++ b/Library/Homebrew/vendor/bundle/ruby/3.3.0/gems/plist-3.7.2/lib/plist/version.rb @@ -1,5 +1,5 @@ # encoding: utf-8 module Plist - VERSION = '3.7.1'.freeze + VERSION = '3.7.2'.freeze end