aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/http/response.rb
Commit message (Expand)AuthorAgeFilesLines
* Make `ActionDispatch::Response#content_type` behavior configurableyuuji.yaginuma2019-06-211-1/+12
* Enable `Layout/EmptyLinesAroundAccessModifier` copRyuta Kamizono2019-06-131-2/+0
* Simplify `ActionDispatch::Response#content_type`yuuji.yaginuma2019-06-021-2/+1
* Change `ActionDispatch::Response#content_type` returning Content-Type header ...yuuji.yaginuma2019-06-011-2/+7
* Support other optional parameters and quoted-strings on Content-Type parserr7kamura2019-03-101-4/+3
* Add `Style/RedundantFreeze` to remove redudant `.freeze`Yasuo Honda2018-09-291-3/+3
* Enable `Performance/UnfreezeString` copyuuji.yaginuma2018-09-231-1/+1
* [ci skip] Fix documentation for Response#content_typeprintercu2018-09-141-10/+10
* [Action Pack] require => require_relativeAkira Matsuda2017-10-211-2/+2
* Decouple the merge/normalization and conditional cache control logicPatrick Toomey2017-08-231-0/+1
* Merge pull request #29777 from yui-knk/set_content_typeMatthew Draper2017-08-021-3/+2
|\
| * Brush up local variables assignmentyui-knk2017-07-131-3/+2
| * Use `#set_content_type` instead of `#set_header`yui-knk2017-07-131-1/+1
* | Use frozen string literal in actionpack/Kir Shatrov2017-07-291-0/+2
* | `Response#charset=` uses `default_charset` when `nil` is passedyui-knk2017-07-131-1/+1
|/
* Merge branch 'master' into require_relative_2017Xavier Noria2017-07-021-1/+1
|\
| * Revert "Merge pull request #29540 from kirs/rubocop-frozen-string"Matthew Draper2017-07-021-1/+0
| * Merge pull request #29540 from kirs/rubocop-frozen-stringMatthew Draper2017-07-021-0/+1
| |\
| | * Enforce frozen string in RubocopKir Shatrov2017-07-011-0/+1
| * | Make ActionMailer frozen string literal friendly.Pat Allan2017-06-201-1/+1
| |/
* / [Action Dispatch] require => require_relativeAkira Matsuda2017-07-011-2/+2
|/
* Use mattr_accessor default: option throughout the projectGenadi Samokovarov2017-06-031-2/+2
* [docs] fix ActionDispatch documentationHrvoje Šimić2017-03-131-2/+2
* Current default Rails app encoding "utf-8" looks more like a W3C charset than...Akira Matsuda2017-01-111-1/+1
* Only default the response charset when it is first setMatthew Draper2016-12-201-1/+3
* Do not raise exception when content_type is a empty stringRafael Mendonça França2016-12-091-1/+1
* Merge pull request #26905 from bogdanvlviv/docsAndrew White2016-11-131-1/+1
|\
| * Add missing `+` around a some literals.bogdanvlviv2016-10-271-1/+1
* | Add more rubocop rules about whitespacesRafael Mendonça França2016-10-291-1/+1
|/
* Remove default argument, and extract internal convenience methodJon Moss2016-08-291-6/+12
* Allow `send_file` to declare a charsetJon Moss2016-08-291-4/+5
* normalizes indentation and whitespace across the projectXavier Noria2016-08-061-1/+1
* modernizes hash syntax in actionpackXavier Noria2016-08-061-1/+1
* applies new string literal convention in actionpack/libXavier Noria2016-08-061-11/+11
* Fixes #23964Ryan T. Hosford2016-03-131-9/+24
* add missing requireAaron Patterson2016-02-051-0/+1
* Space OddityAkira Matsuda2016-01-141-1/+1
* Commit before freezing the headersMatthew Draper2016-01-121-0/+7
* Only commit the cookie jar if it hasn't been committedeileencodes2015-12-061-1/+1
* Stop violating law of demeter in response cookie_jareileencodes2015-12-061-1/+1
* Push `before_sending` to super classeileencodes2015-12-061-0/+2
* Remove dead codeRafael Mendonça França2015-10-281-5/+0
* use methods for accessing the cache control headersAaron Patterson2015-10-061-0/+4
* Use `Mime[:foo]` instead of `Mime::Type[:FOO]` for back compatJeremy Daer2015-10-061-1/+1
* move file sending to the response objectAaron Patterson2015-10-051-1/+39
* Introduce `Headers#add`. Move `Response#add_header` upstream.Jeremy Daer2015-10-031-21/+1
* Response#add_header for adding to multi-valued headers like VaryJeremy Daer2015-10-011-0/+20
* move the Header hash to the super classAaron Patterson2015-09-241-1/+24
* mutate headers before committing the responseAaron Patterson2015-09-241-2/+8
* stop applying default headers in ActionDispatch::ResponseAaron Patterson2015-09-231-6/+10