diff options
author | Eileen M. Uchitelle <eileencodes@users.noreply.github.com> | 2018-07-24 08:20:04 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-24 08:20:04 -0400 |
commit | 48c287d1963fba09cf620527d35519f67d5ca01a (patch) | |
tree | 9a5d11f6f226616363b6ab505b2692576a68a92a /actionpack/lib/abstract_controller | |
parent | bd139a59405044c27bf367cde671e4bdbf7ccb57 (diff) | |
parent | 7b9c19d94b18f340552f95225bf01d6f91804184 (diff) | |
download | rails-48c287d1963fba09cf620527d35519f67d5ca01a.tar.gz rails-48c287d1963fba09cf620527d35519f67d5ca01a.tar.bz2 rails-48c287d1963fba09cf620527d35519f67d5ca01a.zip |
Merge pull request #33426 from pwim/https-guide-links
Rails guides are now served over https
Diffstat (limited to 'actionpack/lib/abstract_controller')
-rw-r--r-- | actionpack/lib/abstract_controller/collector.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/abstract_controller/collector.rb b/actionpack/lib/abstract_controller/collector.rb index 297ec5ca40..d4a078ab32 100644 --- a/actionpack/lib/abstract_controller/collector.rb +++ b/actionpack/lib/abstract_controller/collector.rb @@ -26,7 +26,7 @@ module AbstractController def method_missing(symbol, &block) unless mime_constant = Mime[symbol] raise NoMethodError, "To respond to a custom format, register it as a MIME type first: " \ - "http://guides.rubyonrails.org/action_controller_overview.html#restful-downloads. " \ + "https://guides.rubyonrails.org/action_controller_overview.html#restful-downloads. " \ "If you meant to respond to a variant like :tablet or :phone, not a custom format, " \ "be sure to nest your variant response within a format response: " \ "format.html { |html| html.tablet { ... } }" |