summaryrefslogtreecommitdiff
path: root/tool
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2022-10-17 21:16:01 -0700
committerTakashi Kokubun <takashikkbn@gmail.com>2022-10-17 21:16:09 -0700
commit134acf98d897dd93c3d113e5d6b897fb690aaa92 (patch)
treec4365c9a8abb28e6fe93f6a8f98cf00e61c4da44 /tool
parentab3b1b23811c44f56f3dff318b08a9112cba3582 (diff)
ruby/ruby-commit-hook has been renamed [ci skip]
to ruby/git.ruby-lang.org
Diffstat (limited to 'tool')
-rwxr-xr-xtool/gen-mailmap.rb2
-rwxr-xr-xtool/sync_default_gems.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/tool/gen-mailmap.rb b/tool/gen-mailmap.rb
index 27b7abf8de..df1884520c 100755
--- a/tool/gen-mailmap.rb
+++ b/tool/gen-mailmap.rb
@@ -3,7 +3,7 @@
require "open-uri"
require "yaml"
-EMAIL_YML_URL = "https://cdn.jsdelivr.net/gh/ruby/ruby-commit-hook/config/email.yml"
+EMAIL_YML_URL = "https://cdn.jsdelivr.net/gh/ruby/git.ruby-lang.org/config/email.yml"
email_yml = URI(EMAIL_YML_URL).read.sub(/\A(?:#.*\n)+/, "").gsub(/^# +(.+)$/) { $1 + ": []" }
diff --git a/tool/sync_default_gems.rb b/tool/sync_default_gems.rb
index a5f8c7fd09..9fcbeb7d22 100755
--- a/tool/sync_default_gems.rb
+++ b/tool/sync_default_gems.rb
@@ -434,7 +434,7 @@ def message_filter(repo, sha)
print "[#{repo}] ", log
end
-# NOTE: This method is also used by ruby-commit-hook/bin/update-default-gem.sh
+# NOTE: This method is also used by GitHub ruby/git.ruby-lang.org's bin/update-default-gem.sh
# @param gem [String] A gem name, also used as a git remote name. REPOSITORIES converts it to the appropriate GitHub repository.
# @param ranges [Array<String>] "before..after". Note that it will NOT sync "before" (but commits after that).
# @param edit [TrueClass] Set true if you want to resolve conflicts. Obviously, update-default-gem.sh doesn't use this.