aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAkira Matsuda <ronnie@dio.jp>2017-11-10 18:15:50 +0900
committerGitHub <noreply@github.com>2017-11-10 18:15:50 +0900
commitff29f1b0a9cd590d2d21b82fd81a6f1565d484e0 (patch)
tree45442d6c364cdbfca4944509f93493d55b83bec1
parent2da92b7a94fc3f3e524e1becc600bd1f63a361fd (diff)
parent9db2ef9cb1c98876e21ab28a6df501156ed138d7 (diff)
downloadrails-ff29f1b0a9cd590d2d21b82fd81a6f1565d484e0.tar.gz
rails-ff29f1b0a9cd590d2d21b82fd81a6f1565d484e0.tar.bz2
rails-ff29f1b0a9cd590d2d21b82fd81a6f1565d484e0.zip
Merge pull request #31118 from aycabta/fix-rdoc-url
Fix RDoc and Rake URL
-rw-r--r--actionview/RUNNING_UNIT_TESTS.rdoc2
-rw-r--r--guides/source/api_documentation_guidelines.md6
2 files changed, 4 insertions, 4 deletions
diff --git a/actionview/RUNNING_UNIT_TESTS.rdoc b/actionview/RUNNING_UNIT_TESTS.rdoc
index 6c4e5e983a..e99d5ca1df 100644
--- a/actionview/RUNNING_UNIT_TESTS.rdoc
+++ b/actionview/RUNNING_UNIT_TESTS.rdoc
@@ -4,7 +4,7 @@ The easiest way to run the unit tests is through Rake. The default task runs
the entire test suite for all classes. For more information, checkout the
full array of rake tasks with "rake -T"
-Rake can be found at http://docs.seattlerb.org/rake/.
+Rake can be found at https://ruby.github.io/rake/.
== Running by hand
diff --git a/guides/source/api_documentation_guidelines.md b/guides/source/api_documentation_guidelines.md
index 2c153d3783..10b89433e7 100644
--- a/guides/source/api_documentation_guidelines.md
+++ b/guides/source/api_documentation_guidelines.md
@@ -16,7 +16,7 @@ RDoc
----
The [Rails API documentation](http://api.rubyonrails.org) is generated with
-[RDoc](http://docs.seattlerb.org/rdoc/). To generate it, make sure you are
+[RDoc](https://ruby.github.io/rdoc/). To generate it, make sure you are
in the rails root directory, run `bundle install` and execute:
```bash
@@ -26,9 +26,9 @@ in the rails root directory, run `bundle install` and execute:
Resulting HTML files can be found in the ./doc/rdoc directory.
Please consult the RDoc documentation for help with the
-[markup](http://docs.seattlerb.org/rdoc/RDoc/Markup.html),
+[markup](https://ruby.github.io/rdoc/RDoc/Markup.html),
and also take into account these [additional
-directives](http://docs.seattlerb.org/rdoc/RDoc/Parser/Ruby.html).
+directives](https://ruby.github.io/rdoc/RDoc/Parser/Ruby.html).
Wording
-------