summaryrefslogtreecommitdiff
path: root/tool/sync_default_gems.rb
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2023-08-17 15:06:57 -0700
committerTakashi Kokubun <takashikkbn@gmail.com>2023-08-17 15:06:57 -0700
commite504c368943acd489c9be5bc249425e885605ff1 (patch)
treef6ef95fa61766baa6dc66eafa55a36f9e0aed4f6 /tool/sync_default_gems.rb
parent78e7fd7b49ec2517006492039cd4f92b2cb4d85a (diff)
Remove obsoleted yp_-renaming logic
This has not been relevant since https://github.com/ruby/yarp/pull/1199.
Diffstat (limited to 'tool/sync_default_gems.rb')
-rwxr-xr-xtool/sync_default_gems.rb7
1 files changed, 0 insertions, 7 deletions
diff --git a/tool/sync_default_gems.rb b/tool/sync_default_gems.rb
index 97bcfd2cdf..f40bbb626c 100755
--- a/tool/sync_default_gems.rb
+++ b/tool/sync_default_gems.rb
@@ -408,13 +408,6 @@ module SyncDefaultGems
cp_r("#{upstream}/test", "test/yarp")
cp_r("#{upstream}/src/.", "yarp")
- # Move all files in enc to be prefixed with yp_ in order
- # to deconflict them from non-yarp enc files
- (Dir.entries("yarp/enc/") - ["..", "."]).each do |f|
- next if f.start_with?("yp_")
- mv "yarp/enc/#{f}", "yarp/enc/yp_#{f}"
- end
-
cp_r("#{upstream}/yarp.gemspec", "lib/yarp")
cp_r("#{upstream}/include/yarp/.", "yarp")
cp_r("#{upstream}/include/yarp.h", "yarp")