diff --git a/.gdbinit b/.gdbinit index 0d44622691..f73c036299 100644 --- a/.gdbinit +++ b/.gdbinit @@ -1274,7 +1274,7 @@ document rb_count_objects Counts all objects grouped by type. end -# Details: https://bugs.ruby-lang.org/projects/ruby-trunk/wiki/MachineInstructionsTraceWithGDB +# Details: https://bugs.ruby-lang.org/projects/ruby-master/wiki/MachineInstructionsTraceWithGDB define trace_machine_instructions set logging on set height 0 diff --git a/doc/ChangeLog-2.0.0 b/doc/ChangeLog-2.0.0 index a1a79b8dca..b51d742203 100644 --- a/doc/ChangeLog-2.0.0 +++ b/doc/ChangeLog-2.0.0 @@ -9758,7 +9758,7 @@ Thu Aug 23 16:20:04 2012 Koichi Sasada are b10. If flonum is activated, then USE_FLONUM macro is 1. I'll write detailed in this technique on - https://bugs.ruby-lang.org/projects/ruby-trunk/wiki/Flonum_tech + https://bugs.ruby-lang.org/projects/ruby-master/wiki/Flonum_tech * benchmark/bmx_temp.rb: add an benchmark for simple Float calculation. @@ -13008,7 +13008,7 @@ Thu Jun 7 15:53:03 2012 Koichi Sasada * .gdbinit: add function `trace_machine_instructions' to trace in native machine assemble. - See https://bugs.ruby-lang.org/projects/ruby-trunk/wiki/MachineInstructionsTraceWithGDB + See https://bugs.ruby-lang.org/projects/ruby-master/wiki/MachineInstructionsTraceWithGDB for more details. Wed Jun 6 21:31:21 2012 Tanaka Akira @@ -14711,7 +14711,7 @@ Fri Apr 27 01:45:05 2012 NARUSE, Yui (22) main thread waits at gvl_yield:112 (native_cond_wait) As described above, the main thread can't escape from rb_threadptr_execute_interrupts_common. - See extended memo: http://bugs.ruby-lang.org/projects/ruby-trunk/wiki/R35480_ExtendedMemo + See extended memo: http://bugs.ruby-lang.org/projects/ruby-master/wiki/R35480_ExtendedMemo Fri Apr 27 07:15:07 2012 Tanaka Akira diff --git a/doc/ChangeLog-2.1.0 b/doc/ChangeLog-2.1.0 index 76edfd3ce7..5b670b31c9 100644 --- a/doc/ChangeLog-2.1.0 +++ b/doc/ChangeLog-2.1.0 @@ -3596,7 +3596,7 @@ Tue Oct 22 19:19:05 2013 Koichi Sasada maintains all pages. For example, pages are allocated from the heap_pages. - See https://bugs.ruby-lang.org/projects/ruby-trunk/wiki/GC_design + See https://bugs.ruby-lang.org/projects/ruby-master/wiki/GC_design and https://bugs.ruby-lang.org/attachments/4015/data-heap_structure_with_multiple_heaps.png for more details. @@ -8612,7 +8612,7 @@ Wed Jul 17 14:31:13 2013 Koichi Sasada (4) heap::sorted is an array of "slots", sorted by an address of slot::body. - See https://bugs.ruby-lang.org/projects/ruby-trunk/wiki/GC_design + See https://bugs.ruby-lang.org/projects/ruby-master/wiki/GC_design for more details (figure). * gc.c: Avoid "heaps" terminology. It is ambiguous. diff --git a/doc/NEWS-2.7.0 b/doc/NEWS-2.7.0 index 4ff6cf09dc..28f6c652de 100644 --- a/doc/NEWS-2.7.0 +++ b/doc/NEWS-2.7.0 @@ -812,7 +812,7 @@ RubyVM::InstructionSequence:: * Require compilers to support C99. [Misc #15347] - * Details of our dialect: https://bugs.ruby-lang.org/projects/ruby-trunk/wiki/C99 + * Details of our dialect: https://bugs.ruby-lang.org/projects/ruby-master/wiki/C99 * Ruby's upstream repository is changed from Subversion to Git. diff --git a/doc/contributing.rdoc b/doc/contributing.rdoc index 68dda66e46..007faaec0b 100644 --- a/doc/contributing.rdoc +++ b/doc/contributing.rdoc @@ -27,10 +27,10 @@ on your ticket. stable release. See {Downloading Ruby}[https://www.ruby-lang.org/en/downloads/]. * Look to see if anyone already reported your issue, try - {searching on redmine}[https://bugs.ruby-lang.org/projects/ruby-trunk/issues] + {searching on redmine}[https://bugs.ruby-lang.org/projects/ruby-master/issues] for your problem. * If you can't find a ticket addressing your issue, - {create a new one}[https://bugs.ruby-lang.org/projects/ruby-trunk/issues/new]. + {create a new one}[https://bugs.ruby-lang.org/projects/ruby-master/issues/new]. * Choose the target version, usually current. Bugs will be first fixed in the current release and then {backported}[rdoc-label:label-Backport+Requests]. * Fill in the Ruby version you're using when experiencing this issue @@ -116,7 +116,7 @@ these? Quite a bit, actually: When a bug report goes for a while without any feedback, it goes to the bug graveyard which is unfortunate. If you check the {issues -list}[https://bugs.ruby-lang.org/projects/ruby-trunk/issues] you will find lots +list}[https://bugs.ruby-lang.org/projects/ruby-master/issues] you will find lots of delinquent bugs that require attention. You can help by verifying the existing tickets, try to reproduce the reported @@ -156,7 +156,7 @@ If there's a new feature that you want to see added to Ruby, you will need to write a convincing proposal and patch to implement the feature. For new features in CRuby, use the {'Feature' -tracker}[https://bugs.ruby-lang.org/projects/ruby-trunk/issues?set_filter=1&tracker_id=2] +tracker}[https://bugs.ruby-lang.org/projects/ruby-master/issues?set_filter=1&tracker_id=2] on ruby-master. For non-CRuby dependent features, features that would apply to alternate Ruby implementations such as JRuby and Rubinius, use the {CommonRuby tracker}[https://bugs.ruby-lang.org/projects/common-ruby]. diff --git a/doc/extension.rdoc b/doc/extension.rdoc index 79eb96d518..dfa4cb22ca 100644 --- a/doc/extension.rdoc +++ b/doc/extension.rdoc @@ -2049,7 +2049,7 @@ Before inserting write barriers, you need to know about RGenGC algorithm available in include/ruby/ruby.h. An example is available in iseq.c. For a complete guide for RGenGC and write barriers, please refer to -. +. == Appendix E. RB_GC_GUARD to protect from premature GC diff --git a/doc/syntax/refinements.rdoc b/doc/syntax/refinements.rdoc index fc554bb476..44a63a2bae 100644 --- a/doc/syntax/refinements.rdoc +++ b/doc/syntax/refinements.rdoc @@ -278,6 +278,6 @@ Refinements in descendants have higher precedence than those of ancestors. == Further Reading -See https://bugs.ruby-lang.org/projects/ruby-trunk/wiki/RefinementsSpec for the +See https://bugs.ruby-lang.org/projects/ruby-master/wiki/RefinementsSpec for the current specification for implementing refinements. The specification also contains more details. diff --git a/lib/webrick/webrick.gemspec b/lib/webrick/webrick.gemspec index 5490502539..97e93b5ace 100644 --- a/lib/webrick/webrick.gemspec +++ b/lib/webrick/webrick.gemspec @@ -66,7 +66,7 @@ Gem::Specification.new do |s| if s.respond_to?(:metadata=) s.metadata = { - "bug_tracker_uri" => "https://bugs.ruby-lang.org/projects/ruby-trunk/issues", + "bug_tracker_uri" => "https://bugs.ruby-lang.org/projects/ruby-master/issues", "homepage_uri" => "https://www.ruby-lang.org", "source_code_uri" => "https://git.ruby-lang.org/ruby.git/" } diff --git a/tool/redmine-backporter.rb b/tool/redmine-backporter.rb index 9281219faa..757fe180bc 100755 --- a/tool/redmine-backporter.rb +++ b/tool/redmine-backporter.rb @@ -271,7 +271,7 @@ def backport_command_string # check if the Git revision is included in trunk begin - uri = URI("#{REDMINE_BASE}/projects/ruby-trunk/repository/git/revisions/#{c}") + uri = URI("#{REDMINE_BASE}/projects/ruby-master/repository/git/revisions/#{c}") uri.read($openuri_options) true rescue @@ -301,7 +301,7 @@ class CommandSyntaxError < RuntimeError; end commands = { "ls" => proc{|args| raise CommandSyntaxError unless /\A(\d+)?\z/ =~ args - uri = URI(REDMINE_BASE+'/projects/ruby-trunk/issues.json?'+URI.encode_www_form(@query.dup.merge('page' => ($1 ? $1.to_i : 1)))) + uri = URI(REDMINE_BASE+'/projects/ruby-master/issues.json?'+URI.encode_www_form(@query.dup.merge('page' => ($1 ? $1.to_i : 1)))) # puts uri res = JSON(uri.read($openuri_options)) @issues = issues = res["issues"] @@ -379,10 +379,10 @@ eom case args when /\Ar?(\d+)\z/ # SVN rev = $1 - uri = URI("#{REDMINE_BASE}/projects/ruby-trunk/repository/trunk/revisions/#{rev}/issues.json") + uri = URI("#{REDMINE_BASE}/projects/ruby-master/repository/trunk/revisions/#{rev}/issues.json") when /\A\h{7,40}\z/ # Git rev = args - uri = URI("#{REDMINE_BASE}/projects/ruby-trunk/repository/git/revisions/#{rev}/issues.json") + uri = URI("#{REDMINE_BASE}/projects/ruby-master/repository/git/revisions/#{rev}/issues.json") else raise CommandSyntaxError end