1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Update links from rubygems/bundler to rubygems/rubygems

This commit is contained in:
Jakob Krigovsky 2020-05-07 20:02:21 +02:00 committed by Hiroshi SHIBATA
parent 9139acca66
commit f9872c50cc
Notes: git 2020-06-05 07:33:52 +09:00
4 changed files with 8 additions and 8 deletions

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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