summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJakob Krigovsky <jakob@krigovsky.com>2020-05-07 20:02:21 +0200
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2020-06-05 07:32:42 +0900
commitf9872c50cc6cc91767733757984b5af1bd49dc7d (patch)
tree023f2c95bc648c2d71c5439b3f069944590de754 /lib
parent9139acca66086d0d6c0867ff02b8cb8c338df5d4 (diff)
Update links from rubygems/bundler to rubygems/rubygems
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/3184
Diffstat (limited to 'lib')
-rw-r--r--lib/bundler/bundler.gemspec6
-rw-r--r--lib/bundler/cli/issue.rb4
-rw-r--r--lib/bundler/friendly_errors.rb4
-rw-r--r--lib/bundler/source/git/git_proxy.rb2
4 files changed, 8 insertions, 8 deletions
diff --git a/lib/bundler/bundler.gemspec b/lib/bundler/bundler.gemspec
index d29f800c3a..d3c6b9aac7 100644
--- a/lib/bundler/bundler.gemspec
+++ b/lib/bundler/bundler.gemspec
@@ -24,10 +24,10 @@ Gem::Specification.new do |s|
if s.respond_to?(:metadata=)
s.metadata = {
- "bug_tracker_uri" => "https://github.com/rubygems/bundler/issues",
- "changelog_uri" => "https://github.com/rubygems/bundler/blob/master/CHANGELOG.md",
+ "bug_tracker_uri" => "https://github.com/rubygems/rubygems/issues",
+ "changelog_uri" => "https://github.com/rubygems/rubygems/blob/master/bundler/CHANGELOG.md",
"homepage_uri" => "https://bundler.io/",
- "source_code_uri" => "https://github.com/rubygems/bundler/",
+ "source_code_uri" => "https://github.com/rubygems/rubygems/",
}
end
diff --git a/lib/bundler/cli/issue.rb b/lib/bundler/cli/issue.rb
index 1a0ea39f7b..f4cd5ac4df 100644
--- a/lib/bundler/cli/issue.rb
+++ b/lib/bundler/cli/issue.rb
@@ -10,7 +10,7 @@ module Bundler
be sure to check out these resources:
1. Check out our troubleshooting guide for quick fixes to common issues:
- https://github.com/rubygems/bundler/blob/master/doc/TROUBLESHOOTING.md
+ https://github.com/rubygems/rubygems/blob/master/bundler/doc/TROUBLESHOOTING.md
2. Instructions for common Bundler uses can be found on the documentation
site: https://bundler.io/
@@ -22,7 +22,7 @@ module Bundler
still aren't working the way you expect them to, please let us know so
that we can diagnose and help fix the problem you're having. Please
view the Filing Issues guide for more information:
- https://github.com/rubygems/bundler/blob/master/doc/contributing/ISSUES.md
+ https://github.com/rubygems/rubygems/blob/master/bundler/doc/contributing/ISSUES.md
EOS
diff --git a/lib/bundler/friendly_errors.rb b/lib/bundler/friendly_errors.rb
index 59795803cd..e5facd31ea 100644
--- a/lib/bundler/friendly_errors.rb
+++ b/lib/bundler/friendly_errors.rb
@@ -76,7 +76,7 @@ module Bundler
I tried...
- - **Have you read our issues document, https://github.com/rubygems/rubygems/blob/master/doc/contributing/ISSUES.md?**
+ - **Have you read our issues document, https://github.com/rubygems/rubygems/blob/master/bundler/doc/contributing/ISSUES.md?**
...
@@ -100,7 +100,7 @@ module Bundler
#{issues_url(e)}
If there aren't any reports for this error yet, please create copy and paste the report template above into a new issue. Don't forget to anonymize any private data! The new issue form is located at:
- https://github.com/rubygems/rubygems/issues/new
+ https://github.com/rubygems/rubygems/issues/new?labels=Bundler
EOS
end
diff --git a/lib/bundler/source/git/git_proxy.rb b/lib/bundler/source/git/git_proxy.rb
index 9a4b7fe523..da03efde0c 100644
--- a/lib/bundler/source/git/git_proxy.rb
+++ b/lib/bundler/source/git/git_proxy.rb
@@ -18,7 +18,7 @@ module Bundler
def initialize(command)
msg = String.new
msg << "Bundler is trying to run a `git #{command}` at runtime. You probably need to run `bundle install`. However, "
- msg << "this error message could probably be more useful. Please submit a ticket at https://github.com/rubygems/bundler/issues "
+ msg << "this error message could probably be more useful. Please submit a ticket at https://github.com/rubygems/rubygems/issues/new?labels=Bundler&template=bundler-related-issue.md "
msg << "with steps to reproduce as well as the following\n\nCALLER: #{caller.join("\n")}"
super msg
end