Skip to content

Commit 1557b42

Browse files
committed
Favor Rack and Nokogiri own documentation over rubydoc.info
Followup: rails#55408 Co-Autored-By: zzak <[email protected]>
1 parent 087e27d commit 1557b42

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

guides/source/action_controller_overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1200,7 +1200,7 @@ the client. This section describes the purpose of some of the properties of the
12001200

12011201
To get a full list of the available methods, refer to the [Rails API
12021202
documentation](https://api.rubyonrails.org/classes/ActionDispatch/Request.html)
1203-
and [Rack](https://www.rubydoc.info/gems/rack/Rack/Request)
1203+
and [Rack](https://rack.github.io/rack/main/Rack/Request.html)
12041204
documentation.
12051205

12061206
| Property of `request` | Purpose |
@@ -1271,4 +1271,4 @@ Here are some of the properties of the `response` object:
12711271
To get a full list of the available methods, refer to the [Rails API
12721272
documentation](https://api.rubyonrails.org/classes/ActionDispatch/Response.html)
12731273
and [Rack
1274-
Documentation](https://www.rubydoc.info/gems/rack/Rack/Response).
1274+
Documentation](https://rack.github.io/rack/main/Rack/Response.html).

guides/source/api_app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ environment's configuration file.
387387

388388
You can learn more about how to use `Rack::Sendfile` with popular
389389
front-ends in [the Rack::Sendfile
390-
documentation](https://www.rubydoc.info/gems/rack/Rack/Sendfile).
390+
documentation](https://rack.github.io/rack/main/Rack/Sendfile.html).
391391

392392
Here are some values for this header for some popular servers, once these servers are configured to support
393393
accelerated file sending:

guides/source/testing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1861,7 +1861,7 @@ documentation](https://github.com/rails/rails-dom-testing).
18611861
In order to integrate with [rails-dom-testing][], tests that inherit from
18621862
`ActionView::TestCase` declare a `document_root_element` method that returns the
18631863
rendered content as an instance of a
1864-
[Nokogiri::XML::Node](https://www.rubydoc.info/gems/nokogiri/Nokogiri/XML/Node):
1864+
[Nokogiri::XML::Node](https://nokogiri.org/rdoc/Nokogiri/XML/Node.html):
18651865

18661866
```ruby
18671867
test "renders a link to itself" do

0 commit comments

Comments
 (0)