aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/action_cable_overview.md
Commit message (Collapse)AuthorAgeFilesLines
* Remove mention about Evented Redis [ci skip]yuuji.yaginuma2017-10-261-2/+2
| | | | Evented Redis adapter was removed in 48766e32d31651606b9f68a16015ad05c3b0de2c.
* Remove mention about Evented Redis [ci skip]bogdanvlviv2017-10-231-2/+1
| | | | | Evented Redis is removed from Rails. See #30945
* Cosmetic fixes [ci skip]Yauheni Dakuka2017-10-061-1/+1
|
* [ci skip] Prefer cookies.encrypted over signed (#30129)Claudio B2017-08-071-1/+1
| | | | | | | | | | | | | | | | In some examples and guides we are recommending to use code like: ```ruby verified_user = User.find_by(id: cookies.signed[:user_id]) ``` My suggestion is to use instead: ```ruby verified_user = User.find_by(id: cookies.encrypted[:user_id]) ``` which invites users to prefer the "newer" encrypted cookies over the "legacy" signed cookies.
* Rename local variable name `current_user` to `verified_user` [ci skip]yuuji.yaginuma2017-03-251-3/+3
| | | | Related #28570
* Various style + grammar fixes for #27719Jon Moss2017-01-181-8/+10
| | | | [ci skip]
* Update ActionCable guide to better describe SubscriptionAdapter configuration.Chad Ingram2017-01-171-3/+22
|
* Abuse of protected in guidesAkira Matsuda2016-12-251-1/+1
|
* Suggested editsJavier Cuevas2016-10-131-3/+3
|
* Improve Action Cable Overview guideJavier Cuevas2016-10-131-3/+3
| | | The default adapter in development & test environments is not `redis` but `async`.
* Change page:change to turbolinks:load in README.md [ci skip]kenta-s2016-10-051-1/+1
|
* Merge branch 'master' of github.com:rails/docrailsVijay Dev2016-08-211-2/+2
|\
| * Fix remaining broadcasting_name example from Action Cable guide [ci skip]Prathamesh Sonpatki2016-08-121-2/+2
| | | | | | | | - Followup of https://github.com/rails/rails/pull/26125.
* | [ci skip] Fix documentation wrong for ActionCableEric Zhang2016-08-121-1/+1
| |
* | [ci skip] Fix documentation for ActionCable::Channel#broadcast_toEric Zhang2016-08-121-2/+2
|/
* Update ActionCable Rebroadcasting a Message documentationJoseph Mullins2016-07-121-1/+1
| | | | Replace broadcast_to with ActionCable.server.broadcast to be inline with its partner, #stream_from
* Add header demarcation to Action Cable guideJosh Justice2016-07-051-1/+3
| | | | | | | | Guide generation is configured to detect a guide header by a 40-or-more-hyphen long line. The Action Cable guide was missing this line, so the page title on the guides site was only showing "Ruby on Rails Guides", and the section title in the Kindle index was "Ruby on Rails Guides". Adding the header demarcation line back in fixes both of these. Fixes #25697 [ci skip]
* Make log tags example for ACa more generic and not BC specific [ci skip]Vipul A M2016-06-151-3/+4
|
* Expand on AC introduction list [ci skip]Vipul A M2016-06-071-0/+2
|
* Merge branch 'master' of github.com:rails/docrailsVijay Dev2016-06-031-1/+1
|\ | | | | | | | | Conflicts: guides/source/action_cable_overview.md
| * Light edits to Action Cable Overview guideJon Moss2016-05-281-3/+3
| | | | | | | | [ci skip]
* | [ci skip]Fix wrong require path raising LoadErrorwillnet2016-05-291-1/+1
| |
* | [ci skip] Fix ActionCable Guideswillnet2016-05-271-1/+1
| | | | | | | | Default worker pool size was changed from 100 to 4 at #24376
* | edit pass over the cable guide [ci skip]Xavier Noria2016-05-141-143/+181
|/
* change cable.coffee to cable.js [ci skip]yuuji.yaginuma2016-05-071-6/+11
| | | | | In #23935, cable file was to be provided by the javascript instead of coffeescript, doc was also been modified to use javascript.
* http --> httpsJon Moss2016-05-061-1/+1
| | | | [ci skip]
* Merge branch 'master' of github.com:rails/docrailsVijay Dev2016-04-291-7/+8
|\ | | | | | | | | Conflicts: guides/source/configuring.md
| * [ci skip] Fix formatting of code snippet in Action Cable guidePrathamesh Sonpatki2016-04-051-7/+8
| |
* | update example to specify the Action Cable mount path [ci skip]yuuji.yaginuma2016-04-151-4/+5
| | | | | | | | Follow up to 8b69f1e
* | fix typo in file path [ci skip]yuuji.yaginuma2016-04-101-4/+4
|/
* Remove extra 'the' and unwanted comma [ci skip]Santosh Wadghule2016-03-081-1/+1
|
* Fix formatting in Action Cable guide [ci skip]Prathamesh Sonpatki2016-02-281-0/+1
|
* Fix merge conflict in Action Cable guide [ci skip]Prathamesh Sonpatki2016-02-281-5/+2
|
* Further cleanup of the cable guideDavid Heinemeier Hansson2016-02-281-100/+51
|
* Fix typos in Action Cable guide [ci skip]Prathamesh Sonpatki2016-02-281-25/+25
|
* Header TypoDavid Kuhta2016-02-231-1/+1
|
* `stream_for` exampleDavid Kuhta2016-02-231-0/+15
|
* Explicitly denote that channel.rb is a default file.David Kuhta2016-02-231-2/+2
|
* Change ActionCable.server.broadcast to XChannel.broadcast_toDavid Kuhta2016-02-231-10/+7
| | | Using broadcast directly off server is not recommended
* Create action_cable_overview.md resolves #23176 [ci skip]David Kuhta2016-02-141-0/+659
Rails Guide for Action Cable Added content from README Pull additional information from Action Cable README and restructured Client/Server elements Update to list numbering Switched from list numbers to headings in the examples Change AppearancesChannel to AppearanceChannel Word missing fixed missing word. Removed Mistaken nesting of Channel class Removed nesting of ChatChannel and AppearanceChannel from within ApplicationChannel Module. (Copy&Paste error) Incorporated first round of comments 1. Capitalize "action cable" 2. Separated "Consumers require... via JavaScript" into two sentences 3. Minor typographical correction (remember...) 4. Extra backtick 5. Revised text which implied Redis was the exclusive storage adapter to reflect it's position as default. 6. Revised reference to denote correct config file location: config/cable.yml 7. Added adapter: redis to environment configuration blocks 8. Capitalized "R" for "Rack" 9. Revised syntax for routing to reflect the hash syntax. (to: NOT :to =>) 10. Removed reference to Action Cable being separate from Rails. 11. Began revision for adapter API [I believe this requires a reformatting of the 'Redis' portion of the configuration section to simply "Storage Adapters"] 12. Celluloid -> Concurrent-ruby Moved errant grave mark [ci skip] Reordered "In App" above "Standalone" [ci skip] Reordered to reflect "In App" as preferable to "Standalone" Action Cable Deployment [ci skip] Removed paragraph that alludes to Action Cable not being able to run in the same process as Rails. Removed EM reference and updated deployment [ci skip] Removed explicit multi-threaded server dependency reference [ci skip] Revised Configuration and fixed typos [ci skip] Switched Lifecycle Graphic for Detailed Description [ci skip] Switched from Lifecycle graphic to detailed description to facilitate revision and maintainability in the future. Capitalized Heading (typo) [ci skip] Implemented merged commits from README [ci skip] Pulled over all (or at least I believe all) merged commits from README. (Dec 14, 2015 - Feb 11, 2016) Editorial - Capitalize WebSockets [ci skip] Reformated lines to ~75 characters [ci skip]