aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller/live_stream_test.rb
Commit message (Expand)AuthorAgeFilesLines
* call `get` instead of controller.processAaron Patterson2015-09-231-12/+10
* remove controller constructionAaron Patterson2015-09-231-8/+4
* stop directly referencing the request and response objectsAaron Patterson2015-09-231-23/+21
* test framework allocates the controller for usAaron Patterson2015-09-231-1/+0
* type of response should not matterAaron Patterson2015-09-231-6/+0
* don't touch the response object until after we call `get`Aaron Patterson2015-09-231-5/+2
* Remove unused variablesakihiro172015-08-241-2/+2
* Stop using deprecated `render :text` in testPrem Sichanugrist2015-07-171-2/+2
* Replaced `ActiveSupport::Concurrency::Latch` with concurrent-ruby.Jerry D'Antonio2015-07-131-14/+14
* Skip the failing tests on Rubinius for nowRobin Dupret2015-03-021-0/+2
* When your templates change, browser caches bust automatically.Jeremy Kemper2014-08-171-1/+1
* Handle client disconnect during live streamingMatthew Draper2014-06-081-0/+89
* Add multiple lines message support for SSE moduleayaya2014-05-121-0/+16
* re-raise error if error occurs before committing in streamingKevin Casey2014-03-141-0/+19
* use the body proxy to freeze headersAaron Patterson2014-03-121-2/+4
* only write the jar if the response isn't committedAaron Patterson2014-03-121-0/+13
* make sure we wait for the threads to shut down before asserting closureAaron Patterson2014-02-281-0/+1
* use built-in exception handling in live controllersAaron Patterson2014-02-281-15/+17
* live controllers should have live responsesAaron Patterson2014-02-281-13/+2
* set the error callback to a nice default in case nobody set an error callback...Aaron Patterson2014-02-281-0/+7
* Correct prestreaming controller response status.Kevin Casey2014-02-151-0/+18
* Merge pull request #11443 from wangjohn/sse_reloader_classSantiago Pastorino2013-08-191-0/+88
|\
| * Creating an SSE class to be used with ActionController::Live.wangjohn2013-07-301-0/+88
* | Add timeout to test_async_streamGaurish Sharma2013-08-021-1/+1
|/
* Exception handling for controllers using ActionController::LiveSean Griffin2013-03-181-1/+75
* Handle conditional get in live requests - this will prevent error when using ...Bernard Potocki2013-03-141-0/+15
* Alias refute methods to assert_not and perfer assert_not on testsRafael Mendonça França2012-12-311-1/+1
* make sure the body finishes rendering before checking response closureAaron Patterson2012-08-031-1/+2
* close the response when the response body is set so that normal render calls ...Aaron Patterson2012-07-291-0/+9
* header hash is duped before being sent up the rack stackAaron Patterson2012-07-291-0/+13
* make sure set_response! sets the correct response objectAaron Patterson2012-07-291-0/+6
* Controller actions are processed in a separate thread for liveAaron Patterson2012-07-291-3/+69
* added live responses which can be written and read in separate threadsAaron Patterson2012-07-291-0/+26