diff options
| author | Hiroshi SHIBATA <hsbt@ruby-lang.org> | 2025-10-31 09:50:33 +0900 |
|---|---|---|
| committer | Hiroshi SHIBATA <hsbt@ruby-lang.org> | 2025-10-31 09:50:33 +0900 |
| commit | 2486e771b6ff6ab780d0514be809d801f88c0831 (patch) | |
| tree | c300b74f3797805e90164d08ee159a3faa3887b6 | |
| parent | 17e95cb4713fa465920b989ee49ff61eab8336ec (diff) | |
Added missing options to help message
| -rwxr-xr-x | tool/sync_default_gems.rb | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/tool/sync_default_gems.rb b/tool/sync_default_gems.rb index 3cba7010df..f1a28f402a 100755 --- a/tool/sync_default_gems.rb +++ b/tool/sync_default_gems.rb @@ -823,7 +823,13 @@ module SyncDefaultGems puts <<-HELP \e[1mSync with upstream code of default libraries\e[0m -\e[1mImport a default library through `git clone` and `cp -rf` (git commits are lost)\e[0m +\e[1mImport all default gems through `git clone` and `cp -rf` (git commits are lost)\e[0m + ruby #$0 all + +\e[1mImport all released version of default gems\e[0m + ruby #$0 all release + +\e[1mImport a default gem with specific gem same as all command\e[0m ruby #$0 rubygems \e[1mPick a single commit from the upstream repository\e[0m @@ -835,6 +841,9 @@ module SyncDefaultGems \e[1mPick all commits since the last picked commit\e[0m ruby #$0 -a rubygems +\e[1mUpdate repositories of default gems\e[0m + ruby #$0 up + \e[1mList known libraries\e[0m ruby #$0 list |
