diff options
| author | Hiroshi SHIBATA <hsbt@ruby-lang.org> | 2025-12-10 14:48:32 +0900 |
|---|---|---|
| committer | Hiroshi SHIBATA <hsbt@ruby-lang.org> | 2025-12-10 15:04:02 +0900 |
| commit | bbee62abbd26e3bf526dbbfddd17d72b81402a72 (patch) | |
| tree | c89a54da35604e47e9c00dddcca613cfb932eec2 | |
| parent | 74376fefbb2d79d9c2df355445689058fab828e6 (diff) | |
We don't need to check the latest release of pathname
Pathname is now embedded class of Ruby
| -rwxr-xr-x | tool/sync_default_gems.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/sync_default_gems.rb b/tool/sync_default_gems.rb index 780f923b55..6945c6cdce 100755 --- a/tool/sync_default_gems.rb +++ b/tool/sync_default_gems.rb @@ -427,7 +427,7 @@ module SyncDefaultGems end def check_prerelease_version(gem) - return if ["rubygems", "mmtk", "cgi"].include?(gem) + return if ["rubygems", "mmtk", "cgi", "pathname"].include?(gem) require "net/https" require "json" |
