aboutsummaryrefslogtreecommitdiffstats
path: root/actioncable/test/test_helper.rb
Commit message (Collapse)AuthorAgeFilesLines
* Cable: Extract stream handler constructionJeremy Daer2016-04-181-4/+7
| | | | | | | | * Use separate stream handler builders for easy override and testing. * Fix worker pool execution that was silently failing since it only expected connection receivers. Sparked by code in #24162.
* Cable message encodingJeremy Daer2016-03-311-3/+5
| | | | | | | | | | | | | | | | | | | * Introduce a connection coder responsible for encoding Cable messages as WebSocket messages, defaulting to `ActiveSupport::JSON` and duck- typing to any object responding to `#encode` and `#decode`. * Consolidate encoding responsibility to the connection. No longer explicitly JSON-encode from channels or other sources. Pass Cable messages as Hashes to `#transmit` and rely on it to encode. * Introduce stream encoders responsible for decoding pubsub messages. Preserve the currently raw encoding, but make it easy to use JSON. Same duck type as the connection encoder. * Revert recent data normalization/quoting (#23649) which treated `identifier` and `data` values as nested JSON objects rather than as opaque JSON-encoded strings. That dealt us an awkward hand where we'd decode JSON stringsā€¦ or not, but always encode as JSON. Embedding JSON object values directly is preferably, no extra JSON encoding, but that should be a purposeful protocol version change rather than ambiguously, inadvertently supporting multiple message formats.
* Merge pull request #23992 from matthewd/em-optionMatthew Draper2016-03-041-1/+43
|\ | | | | Support faye-websocket + EventMachine as an option
| * Support faye-websocket + EventMachine as an optionMatthew Draper2016-03-021-1/+43
| |
* | Accept JSON with no backslashes/escapingJon Moss2016-03-021-0/+1
| | | | | | | | | | | | | | Fixes #22675 Allow channel identifiers and also data with no backslahes/escaping to be accepted by the subscription storer.
* | Remove load_paths fileArthur Neves2016-02-271-3/+0
|/
* Revert "Revert "Eliminate the EventMachine dependency""Matthew Draper2016-01-301-19/+7
|
* Revert "Eliminate the EventMachine dependency"David Heinemeier Hansson2016-01-271-7/+19
|
* Using a hacked faye-websocket, drop EventMachineMatthew Draper2016-01-241-19/+7
|
* Add tests for the ActionCable adaptersMatthew Draper2016-01-241-0/+4
|
* All Redis deps are now optional, Postgres --> PostgreSQL adapterJon Moss2016-01-181-1/+0
|
* Revert "Merge pull request #22977 from rails/revert-22934-master"David Heinemeier Hansson2016-01-161-5/+0
| | | | | This reverts commit d0393fccffc118a5de37654aa222774b66123393, reversing changes made to 3b7ccadfc1c8dfec61af898167e1300b17f5cf25.
* Revert "Move async execution from celluloid to concurrent-ruby"David Heinemeier Hansson2016-01-081-0/+5
|
* Move async execution from celluloid to concurrent-rubyMike Perham2016-01-051-5/+0
| | | | | | | | | | | | | | This removes 8 runtime gem dependencies from Rails: ``` Using hitimes 1.2.3 Using timers 4.1.1 Using celluloid-essentials 0.20.5 Using celluloid-extras 0.20.5 Using celluloid-fsm 0.20.5 Using celluloid-pool 0.20.5 Using celluloid-supervision 0.20.5 Using celluloid 0.17.2 ```
* Quiet warningsDavid Heinemeier Hansson2015-12-161-2/+2
|
* Initial stab at adding Action Cable to rails/masterDavid Heinemeier Hansson2015-12-141-10/+5
|
* Get ready to merge into RailsDavid Heinemeier Hansson2015-12-141-0/+47