| Commit message (Expand) | Author | Age | Files | Lines |
* | edit pass over all warnings | Xavier Noria | 2014-10-28 | 1 | -3/+3 |
* | let's warn with heredocs | Xavier Noria | 2014-10-28 | 1 | -1/+7 |
* | remove duplicate method (_status_code) in action_dispatch | Abdelkader Boudih | 2014-10-19 | 1 | -3/+0 |
* | Make _status_code methods nodoc | Prathamesh Sonpatki | 2014-10-19 | 1 | -1/+1 |
* | Add support for Rack::ContentLength middelware | Javan Makhmali | 2014-09-06 | 1 | -0/+4 |
* | Deprecate implicit AD::Response splatting and Array conversion | Jeremy Kemper | 2014-09-06 | 1 | -2/+13 |
* | Handle client disconnect during live streaming | Matthew Draper | 2014-06-08 | 1 | -13/+47 |
* | fixes stack level too deep exception on action named 'status' returning 'head... | Christiaan Van den Poel | 2014-05-15 | 1 | -0/+3 |
* | use the body proxy to freeze headers | Aaron Patterson | 2014-03-12 | 1 | -5/+32 |
* | only write the jar if the response isn't committed | Aaron Patterson | 2014-03-12 | 1 | -0/+4 |
* | Do note remove `Content-Type` when `render :body` | Prem Sichanugrist | 2014-03-05 | 1 | -12/+1 |
* | Add `#no_content_type` attribute to `AD::Response` | Prem Sichanugrist | 2014-02-18 | 1 | -2/+13 |
* | Introduce `render :body` for render raw content | Prem Sichanugrist | 2014-02-18 | 1 | -1/+1 |
* | Prevent [response].flatten from recursing infinitely. | Dan Kang | 2014-02-08 | 1 | -1/+1 |
* | FilterRedirect is referenced at the class level from the Response | Aaron Patterson | 2014-01-31 | 1 | -0/+1 |
* | Remove deprecated cattr_* requires | Genadi Samokovarov | 2013-12-03 | 1 | -1/+1 |
* | Reuse variable to avoid symbol usage | Carlos Antonio da Silva | 2013-08-31 | 1 | -2/+2 |
* | update Rails::Railtie::Configuration and ActionDispatch::Response#respond_to?... | Jon Kessler | 2013-08-16 | 1 | -1/+1 |
* | writing the new body can cause the response to be committed and the | Aaron Patterson | 2013-06-28 | 1 | -1/+3 |
* | Add propery docs to ActionDispatch::Response [ci skip] | Steve Klabnik | 2013-05-30 | 1 | -3/+19 |
* | extract no content response codes to a constant | Vipul A M | 2013-04-22 | 1 | -1/+2 |
* | Removed an old require of an MD5 digest which is no longer used. | wangjohn | 2013-02-15 | 1 | -1/+0 |
* | Avoid to_sym calls | Santiago Pastorino | 2013-02-13 | 1 | -1/+1 |
* | generic pass before merging docrails | Xavier Noria | 2013-01-26 | 1 | -5/+7 |
* | Add documentation to ActionDispatch::Response | Matthew Stopa | 2013-01-20 | 1 | -0/+7 |
* | Fix typo introduced in 0004ca3a | Carlos Antonio da Silva | 2013-01-16 | 1 | -1/+1 |
* | More documentation for ActionDispatch::Response | Matthew Stopa | 2013-01-16 | 1 | -1/+3 |
* | Document ActionDispatch::Response#body method | Matthew Stopa | 2013-01-16 | 1 | -0/+1 |
* | charset should not be appended for `head` responses | Yves Senn | 2012-12-31 | 1 | -2/+6 |
* | Adding filter capability to ActionController logs | Fabrizio Regini | 2012-12-05 | 1 | -0/+1 |
* | push header merge down to a private method so that live responses can have th... | Aaron Patterson | 2012-08-13 | 1 | -3/+7 |
* | introduce default_headers config | Egor Homakov | 2012-08-09 | 1 | -0/+5 |
* | load active_support/core_ext/module/delegation in active_support/rails | Xavier Noria | 2012-08-02 | 1 | -1/+0 |
* | load active_support/core_ext/object/blank in active_support/rails | Xavier Noria | 2012-08-02 | 1 | -1/+0 |
* | header hash is duped before being sent up the rack stack | Aaron Patterson | 2012-07-29 | 1 | -12/+16 |
* | ActionController::DataStreaming::FileBody doesn't respond to #close. | Rafael Mendonça França | 2012-07-29 | 1 | -1/+1 |
* | flushing output should write to the stream rather than mutating the response ... | Aaron Patterson | 2012-07-29 | 1 | -8/+12 |
* | adding a buffered stream to the response object | Aaron Patterson | 2012-07-29 | 1 | -2/+42 |
* | initialize ivars, refactor recycle! to call initialize | Aaron Patterson | 2012-07-29 | 1 | -0/+2 |
* | threads can wait on responses to be committed | Aaron Patterson | 2012-07-27 | 1 | -1/+24 |
* | Fix comment in AD http response | Alexey Vakhov | 2012-04-13 | 1 | -1/+1 |
* | Add ActionController::HTTP | Santiago Pastorino | 2012-03-14 | 1 | -2/+7 |
* | remove check for string from request body setter | lest | 2011-12-21 | 1 | -8/+1 |
* | use Array#join so that file encoding doesn't impact returned string. | Aaron Patterson | 2011-12-12 | 1 | -3/+3 |
* | Use freezed string constant. Some string literals is used repeatedly. | kennyj | 2011-12-08 | 1 | -8/+10 |
* | Use default charset when we read content type without charset. | kennyj | 2011-12-07 | 1 | -1/+1 |
* | removed deprecated methods, and related tests, from ActionPack | Josh Kalderimis | 2011-05-24 | 1 | -23/+0 |
* | Make :status an attr_reader to avoid unnecessary warning when replacing status= | wycats | 2011-05-22 | 1 | -1/+2 |
* | Fix previous commit by allowing a proc to be given as response_body. This is ... | José Valim | 2011-05-10 | 1 | -15/+41 |
* | Fix tests on 1.8 by explicitly checking for strings (which also improves perf... | José Valim | 2011-04-20 | 1 | -1/+9 |