diff options
author | David RodrÃguez <[email protected]> | 2025-05-30 23:00:27 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2025-05-30 17:00:27 -0400 |
commit | 2cce628721728409a26c2d4732f63419785c7fd8 (patch) | |
tree | 977d70a4dd3d5864cac997e94a4de0fa4db76983 /tool/sync_default_gems.rb | |
parent | 3941954fd48265f5eeeb4d339ffe48699fbbe1ec (diff) |
Sync lockfile from rubygems/rubygems (#13472)ruby_3_4
* Sync lockfile from rubygems/rubygems
* Restore lockfile for test-bundler
In the past, bundler updated platform without normalized variable like arm64-darwin-23.
We ignored that update. But the current bundler uses arm64-darwin for that.
---------
Co-authored-by: Hiroshi SHIBATA <[email protected]>
Diffstat (limited to 'tool/sync_default_gems.rb')
-rwxr-xr-x | tool/sync_default_gems.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tool/sync_default_gems.rb b/tool/sync_default_gems.rb index f3941672cb..8330787d22 100755 --- a/tool/sync_default_gems.rb +++ b/tool/sync_default_gems.rb @@ -152,7 +152,9 @@ module SyncDefaultGems chmod("+x", "spec/bin/parallel_rspec") %w[dev_gems test_gems rubocop_gems standard_gems].each do |gemfile| - cp_r("#{upstream}/tool/bundler/#{gemfile}.rb", "tool/bundler") + ["rb.lock", "rb"].each do |ext| + cp_r("#{upstream}/tool/bundler/#{gemfile}.#{ext}", "tool/bundler") + end end rm_rf Dir.glob("spec/bundler/support/artifice/{vcr_cassettes,used_cassettes.txt}") rm_rf Dir.glob("lib/{bundler,rubygems}/**/{COPYING,LICENSE,README}{,.{md,txt,rdoc}}") |