Skip to content

Commit b7fa01b

Browse files
authored
Merge pull request rails#35529 from abhaynikam/35492-follow-up-to-updates-links-to-https
Updated links from http to https in guides, docs, etc
2 parents 9c9f281 + 476abd4 commit b7fa01b

File tree

26 files changed

+34
-34
lines changed

26 files changed

+34
-34
lines changed

.github/issue_template.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
### Steps to reproduce
22
<!-- (Guidelines for creating a bug report are [available
3-
here](http://edgeguides.rubyonrails.org/contributing_to_ruby_on_rails.html#creating-a-bug-report)) -->
3+
here](https://edgeguides.rubyonrails.org/contributing_to_ruby_on_rails.html#creating-a-bug-report)) -->
44

55
### Expected behavior
66
<!-- Tell us what should happen -->

.github/pull_request_template.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ CHANGELOG files by reviewers, please add the CHANGELOG entry at the top of the f
1616
1717
Finally, if your pull request affects documentation or any non-code
1818
changes, guidelines for those changes are [available
19-
here](http://edgeguides.rubyonrails.org/contributing_to_ruby_on_rails.html#contributing-to-the-rails-documentation)
19+
here](https://edgeguides.rubyonrails.org/contributing_to_ruby_on_rails.html#contributing-to-the-rails-documentation)
2020
2121
Thanks for contributing to Rails! -->

CODE_OF_CONDUCT.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ The Rails team is committed to fostering a welcoming community.
44

55
**Our Code of Conduct can be found here**:
66

7-
http://rubyonrails.org/conduct/
7+
https://rubyonrails.org/conduct/
88

99
For a history of updates, see the page history here:
1010

CONTRIBUTING.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#### **Did you find a bug?**
44

55
* **Do not open up a GitHub issue if the bug is a security vulnerability
6-
in Rails**, and instead to refer to our [security policy](http://rubyonrails.org/security/).
6+
in Rails**, and instead to refer to our [security policy](https://rubyonrails.org/security/).
77

88
* **Ensure the bug was not already reported** by searching on GitHub under [Issues](https://github.com/rails/rails/issues).
99

@@ -14,15 +14,15 @@
1414
* [**Action Pack** (controllers, routing) issues](https://github.com/rails/rails/blob/master/guides/bug_report_templates/action_controller_master.rb)
1515
* [**Generic template** for other issues](https://github.com/rails/rails/blob/master/guides/bug_report_templates/generic_master.rb)
1616

17-
* For more detailed information on submitting a bug report and creating an issue, visit our [reporting guidelines](http://edgeguides.rubyonrails.org/contributing_to_ruby_on_rails.html#reporting-an-issue).
17+
* For more detailed information on submitting a bug report and creating an issue, visit our [reporting guidelines](https://edgeguides.rubyonrails.org/contributing_to_ruby_on_rails.html#reporting-an-issue).
1818

1919
#### **Did you write a patch that fixes a bug?**
2020

2121
* Open a new GitHub pull request with the patch.
2222

2323
* Ensure the PR description clearly describes the problem and solution. Include the relevant issue number if applicable.
2424

25-
* Before submitting, please read the [Contributing to Ruby on Rails](http://edgeguides.rubyonrails.org/contributing_to_ruby_on_rails.html) guide to know more about coding conventions and benchmarks.
25+
* Before submitting, please read the [Contributing to Ruby on Rails](https://edgeguides.rubyonrails.org/contributing_to_ruby_on_rails.html) guide to know more about coding conventions and benchmarks.
2626

2727
#### **Did you fix whitespace, format code, or make a purely cosmetic patch?**
2828

@@ -40,9 +40,9 @@ Changes that are cosmetic in nature and do not add anything substantial to the s
4040

4141
#### **Do you want to contribute to the Rails documentation?**
4242

43-
* Please read [Contributing to the Rails Documentation](http://edgeguides.rubyonrails.org/contributing_to_ruby_on_rails.html#contributing-to-the-rails-documentation).
43+
* Please read [Contributing to the Rails Documentation](https://edgeguides.rubyonrails.org/contributing_to_ruby_on_rails.html#contributing-to-the-rails-documentation).
4444

45-
Ruby on Rails is a volunteer effort. We encourage you to pitch in and [join the team](http://contributors.rubyonrails.org)!
45+
Ruby on Rails is a volunteer effort. We encourage you to pitch in and [join the team](https://contributors.rubyonrails.org)!
4646

4747
Thanks! :heart: :heart: :heart:
4848

actioncable/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ You can read more about Action Cable in the [Action Cable Overview](https://edge
1313

1414
API documentation is at:
1515

16-
* http://api.rubyonrails.org
16+
* https://api.rubyonrails.org
1717

1818
Bug reports for the Ruby on Rails project can be filed here:
1919

actioncable/actioncable.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Gem::Specification.new do |s|
1515

1616
s.author = ["Pratik Naik", "David Heinemeier Hansson"]
1717
18-
s.homepage = "http://rubyonrails.org"
18+
s.homepage = "https://rubyonrails.org"
1919

2020
s.files = Dir["CHANGELOG.md", "MIT-LICENSE", "README.md", "lib/**/*", "app/assets/javascripts/action_cable.js"]
2121
s.require_path = "lib"

actionmailbox/test/dummy/config/locales/en.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
# 'true': 'foo'
2828
#
2929
# To learn more, please read the Rails Internationalization guide
30-
# available at http://guides.rubyonrails.org/i18n.html.
30+
# available at https://guides.rubyonrails.org/i18n.html.
3131

3232
en:
3333
hello: "Hello world"
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
Rails.application.routes.draw do
22
resources :messages
3-
# For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
3+
# For details on the DSL available within this file, see https://guides.rubyonrails.org/routing.html
44
end

actionmailer/README.rdoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ Action Mailer is released under the MIT license:
128128

129129
API documentation is at
130130

131-
* http://api.rubyonrails.org
131+
* https://api.rubyonrails.org
132132

133133
Bug reports for the Ruby on Rails project can be filed here:
134134

actionmailer/actionmailer.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Gem::Specification.new do |s|
1515

1616
s.author = "David Heinemeier Hansson"
1717
s.email = "[email protected]"
18-
s.homepage = "http://rubyonrails.org"
18+
s.homepage = "https://rubyonrails.org"
1919

2020
s.files = Dir["CHANGELOG.md", "README.rdoc", "MIT-LICENSE", "lib/**/*"]
2121
s.require_path = "lib"

actionpack/README.rdoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Action Pack is released under the MIT license:
4646

4747
API documentation is at:
4848

49-
* http://api.rubyonrails.org
49+
* https://api.rubyonrails.org
5050

5151
Bug reports for the Ruby on Rails project can be filed here:
5252

actionpack/actionpack.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Gem::Specification.new do |s|
1515

1616
s.author = "David Heinemeier Hansson"
1717
s.email = "[email protected]"
18-
s.homepage = "http://rubyonrails.org"
18+
s.homepage = "https://rubyonrails.org"
1919

2020
s.files = Dir["CHANGELOG.md", "README.rdoc", "MIT-LICENSE", "lib/**/*"]
2121
s.require_path = "lib"

actiontext/test/dummy/config/locales/en.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
# 'true': 'foo'
2828
#
2929
# To learn more, please read the Rails Internationalization guide
30-
# available at http://guides.rubyonrails.org/i18n.html.
30+
# available at https://guides.rubyonrails.org/i18n.html.
3131

3232
en:
3333
hello: "Hello world"
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
Rails.application.routes.draw do
22
resources :messages
3-
# For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
3+
# For details on the DSL available within this file, see https://guides.rubyonrails.org/routing.html
44
end

actionview/README.rdoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Action View is released under the MIT license:
2727

2828
API documentation is at
2929

30-
* http://api.rubyonrails.org
30+
* https://api.rubyonrails.org
3131

3232
Bug reports for the Ruby on Rails project can be filed here:
3333

actionview/app/assets/javascripts/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,5 +52,5 @@ Run `bundle exec rake ujs:server` first, and then run the web tests by visiting
5252
rails-ujs is released under the [MIT License](MIT-LICENSE).
5353

5454
[data]: https://www.w3.org/TR/html5/dom.html#embedding-custom-non-visible-data-with-the-data-attributes "Embedding custom non-visible data with the data-* attributes"
55-
[validator]: http://validator.w3.org/
56-
[csrf]: http://api.rubyonrails.org/classes/ActionController/RequestForgeryProtection.html
55+
[validator]: https://validator.w3.org/
56+
[csrf]: https://api.rubyonrails.org/classes/ActionController/RequestForgeryProtection.html

actionview/lib/action_view/helpers/output_safety_helper.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def safe_join(array, sep = $,)
3838

3939
# Converts the array to a comma-separated sentence where the last element is
4040
# joined by the connector word. This is the html_safe-aware version of
41-
# ActiveSupport's {Array#to_sentence}[http://api.rubyonrails.org/classes/Array.html#method-i-to_sentence].
41+
# ActiveSupport's {Array#to_sentence}[https://api.rubyonrails.org/classes/Array.html#method-i-to_sentence].
4242
#
4343
def to_sentence(array, options = {})
4444
options.assert_valid_keys(:words_connector, :two_words_connector, :last_word_connector, :locale)

actionview/lib/action_view/helpers/translation_helper.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ def translate(key, options = {})
114114

115115
# Delegates to <tt>I18n.localize</tt> with no additional functionality.
116116
#
117-
# See http://rubydoc.info/github/svenfuchs/i18n/master/I18n/Backend/Base:localize
117+
# See https://www.rubydoc.info/github/svenfuchs/i18n/master/I18n/Backend/Base:localize
118118
# for more information.
119119
def localize(*args)
120120
I18n.localize(*args)

activejob/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ switch between them without having to rewrite your jobs.
2222

2323
To learn how to use your preferred queuing backend see its adapter
2424
documentation at
25-
[ActiveJob::QueueAdapters](http://api.rubyonrails.org/classes/ActiveJob/QueueAdapters.html).
25+
[ActiveJob::QueueAdapters](https://api.rubyonrails.org/classes/ActiveJob/QueueAdapters.html).
2626

2727
Declare a job like so:
2828

@@ -86,7 +86,7 @@ by default has been mixed into Active Record classes.
8686

8787
Active Job has built-in adapters for multiple queuing backends (Sidekiq,
8888
Resque, Delayed Job and others). To get an up-to-date list of the adapters
89-
see the API Documentation for [ActiveJob::QueueAdapters](http://api.rubyonrails.org/classes/ActiveJob/QueueAdapters.html).
89+
see the API Documentation for [ActiveJob::QueueAdapters](https://api.rubyonrails.org/classes/ActiveJob/QueueAdapters.html).
9090

9191
**Please note:** We are not accepting pull requests for new adapters. We
9292
encourage library authors to provide an ActiveJob adapter as part of
@@ -121,7 +121,7 @@ Active Job is released under the MIT license:
121121

122122
API documentation is at:
123123

124-
* http://api.rubyonrails.org
124+
* https://api.rubyonrails.org
125125

126126
Bug reports for the Ruby on Rails project can be filed here:
127127

activemodel/README.rdoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ Active Model is released under the MIT license:
253253

254254
API documentation is at:
255255

256-
* http://api.rubyonrails.org
256+
* https://api.rubyonrails.org
257257

258258
Bug reports for the Ruby on Rails project can be filed here:
259259

activestorage/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Active Storage makes it simple to upload and reference files in cloud services l
44

55
Files can be uploaded from the server to the cloud or directly from the client to the cloud.
66

7-
Image files can furthermore be transformed using on-demand variants for quality, aspect ratio, size, or any other [MiniMagick](https://github.com/minimagick/minimagick) or [Vips](http://www.rubydoc.info/gems/ruby-vips/Vips/Image) supported transformation.
7+
Image files can furthermore be transformed using on-demand variants for quality, aspect ratio, size, or any other [MiniMagick](https://github.com/minimagick/minimagick) or [Vips](https://www.rubydoc.info/gems/ruby-vips/Vips/Image) supported transformation.
88

99
## Compared to other storage solutions
1010

@@ -149,7 +149,7 @@ Active Storage is released under the [MIT License](https://opensource.org/licens
149149
150150
API documentation is at:
151151
152-
* http://api.rubyonrails.org
152+
* https://api.rubyonrails.org
153153
154154
Bug reports for the Ruby on Rails project can be filed here:
155155

guides/source/5_2_release_notes.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -849,7 +849,7 @@ Credits
849849
-------
850850

851851
See the
852-
[full list of contributors to Rails](http://contributors.rubyonrails.org/)
852+
[full list of contributors to Rails](https://contributors.rubyonrails.org/)
853853
for the many people who spent many hours making Rails, the stable and robust
854854
framework it is. Kudos to all of them.
855855

guides/source/6_0_release_notes.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ Credits
207207
-------
208208

209209
See the
210-
[full list of contributors to Rails](http://contributors.rubyonrails.org/)
210+
[full list of contributors to Rails](https://contributors.rubyonrails.org/)
211211
for the many people who spent many hours making Rails, the stable and robust
212212
framework it is. Kudos to all of them.
213213

guides/source/caching_with_rails.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ INFO: Page Caching has been removed from Rails 4. See the [actionpack-page_cachi
6363

6464
Page Caching cannot be used for actions that have before filters - for example, pages that require authentication. This is where Action Caching comes in. Action Caching works like Page Caching except the incoming web request hits the Rails stack so that before filters can be run on it before the cache is served. This allows authentication and other restrictions to be run while still serving the result of the output from a cached copy.
6565

66-
INFO: Action Caching has been removed from Rails 4. See the [actionpack-action_caching gem](https://github.com/rails/actionpack-action_caching). See [DHH's key-based cache expiration overview](http://signalvnoise.com/posts/3113-how-key-based-cache-expiration-works) for the newly-preferred method.
66+
INFO: Action Caching has been removed from Rails 4. See the [actionpack-action_caching gem](https://github.com/rails/actionpack-action_caching). See [DHH's key-based cache expiration overview](https://signalvnoise.com/posts/3113-how-key-based-cache-expiration-works) for the newly-preferred method.
6767

6868
### Fragment Caching
6969

railties/README.rdoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Railties is released under the MIT license:
2929

3030
API documentation is at
3131

32-
* http://api.rubyonrails.org
32+
* https://api.rubyonrails.org
3333

3434
Bug reports can be filed for the Ruby on Rails project here:
3535

railties/railties.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Gem::Specification.new do |s|
1515

1616
s.author = "David Heinemeier Hansson"
1717
s.email = "[email protected]"
18-
s.homepage = "http://rubyonrails.org"
18+
s.homepage = "https://rubyonrails.org"
1919

2020
s.files = Dir["CHANGELOG.md", "README.rdoc", "MIT-LICENSE", "RDOC_MAIN.rdoc", "exe/**/*", "lib/**/{*,.[a-z]*}"]
2121
s.require_path = "lib"

0 commit comments

Comments
 (0)