diff options
| author | Hiroshi SHIBATA <hsbt@ruby-lang.org> | 2022-08-26 11:18:43 +0900 |
|---|---|---|
| committer | Hiroshi SHIBATA <hsbt@ruby-lang.org> | 2022-08-26 12:15:47 +0900 |
| commit | 1cbee173bef4ce8dfb779e367b75a05f9777cea6 (patch) | |
| tree | 469b7f1366723c82c63378918ed0d639a0788a01 | |
| parent | 3a2bc849541a38fe0050bd6b522adf6fedbc29f5 (diff) | |
Sync examples and cli from syntax_suggest
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/6287
| -rwxr-xr-x | tool/sync_default_gems.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tool/sync_default_gems.rb b/tool/sync_default_gems.rb index 7a5e190c2d..58813dc656 100755 --- a/tool/sync_default_gems.rb +++ b/tool/sync_default_gems.rb @@ -373,6 +373,11 @@ def sync_default_gems(gem) when "open3" sync_lib gem, upstream rm_rf("lib/open3/jruby_windows.rb") + when "syntax_suggest" + sync_lib gem, upstream + rm_rf(%w[spec/syntax_suggest libexec/syntax_suggest]) + cp_r("#{upstream}/spec", "spec/syntax_suggest") + cp_r("#{upstream}/exe/syntax_suggest", "libexec/syntax_suggest") else sync_lib gem, upstream end |
