Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add Worker Pool section to Action Cable configuration docs | Sergey Ponomarev | 2019-02-01 | 1 | -5/+15 |
| | |||||
* | Minimize boilerplate setup code for JavaScript libraries | Javan Makhmali | 2019-01-16 | 1 | -2/+2 |
| | |||||
* | Add Action Cable Testing guides | Vladimir Dementyev | 2019-01-14 | 1 | -0/+5 |
| | |||||
* | Merge pull request #34932 from ↵ | Ryuta Kamizono | 2019-01-14 | 1 | -8/+8 |
|\ | | | | | | | | | bogdanvlviv/fix-action-cable-guide-follow-up-34709 Fix "Action Cable Overview" guide [ci skip] | ||||
| * | Fix "Action Cable Overview" guide [ci skip] | bogdanvlviv | 2019-01-13 | 1 | -8/+8 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix path to channel files. `rails generate channel Chat` generates `app/javascript/channels/chat_channel.js`. See also, railties/lib/rails/generators/rails/app/templates/app/javascript/packs/application.js.tt, actioncable/lib/rails/generators/channel/templates/javascript/index.js.tt by default `application.js` imports "channels", where `app/javascript/channels/index.js` loads all the channels within this directory and all subdirectories. Follow up #34709 Related to #33079 | ||||
* | | Merge `actioncable/README.md` to the Action Cable Overview guide [ci skip] | bogdanvlviv | 2019-01-13 | 1 | -0/+30 |
|/ | | | | | | | | | | | | In #34709 we updated the guide, but `actioncable/README.md` is still outdated. Instead of fixing content in the file. I suggest not duplicate the info that is already in the guide and instead remove the info from the file and just add a message: "You can read more about Action Cable in the [Action Cable Overview](https://edgeguides.rubyonrails.org/action_cable_overview.html) guide." The same approach is being used for Action Mailbox and Action Text, see #34812 and #34878. | ||||
* | Move all npm packages to @rails scope | Javan Makhmali | 2019-01-10 | 1 | -1/+1 |
| | | | | Fixes #33083 | ||||
* | Use ES6 and Webpacker in ActionCable guide. | Gannon McGibbon | 2019-01-04 | 1 | -112/+160 |
| | | | | [ci skip] | ||||
* | Update `action_cable_overview.md`: fix typo. | Evgeny Sugakov | 2018-11-10 | 1 | -3/+3 |
| | | | | [ci skip] | ||||
* | fix broken link in Action Cable guides and readme [ci skip] | Greg Molnar | 2018-10-08 | 1 | -1/+1 |
| | |||||
* | Rails guides are now served over https | Paul McMahon | 2018-07-24 | 1 | -1/+1 |
| | | | | | http links will be redirected to the https version, but still better to just directly link to the https version. | ||||
* | [ci skip] Add missing **DO NOT READ THIS FILE ON GITHUB, GUIDES ARE ↵ | Ryuta Kamizono | 2017-12-15 | 1 | -0/+2 |
| | | | | PUBLISHED ON http://guides.rubyonrails.org.** | ||||
* | Update Action Cable Overview Guide [ci skip] | Francis Go | 2017-11-22 | 1 | -9/+9 |
| | |||||
* | Remove mention about Evented Redis [ci skip] | yuuji.yaginuma | 2017-10-26 | 1 | -2/+2 |
| | | | | Evented Redis adapter was removed in 48766e32d31651606b9f68a16015ad05c3b0de2c. | ||||
* | Remove mention about Evented Redis [ci skip] | bogdanvlviv | 2017-10-23 | 1 | -2/+1 |
| | | | | | Evented Redis is removed from Rails. See #30945 | ||||
* | Cosmetic fixes [ci skip] | Yauheni Dakuka | 2017-10-06 | 1 | -1/+1 |
| | |||||
* | [ci skip] Prefer cookies.encrypted over signed (#30129) | Claudio B | 2017-08-07 | 1 | -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.yaginuma | 2017-03-25 | 1 | -3/+3 |
| | | | | Related #28570 | ||||
* | Various style + grammar fixes for #27719 | Jon Moss | 2017-01-18 | 1 | -8/+10 |
| | | | | [ci skip] | ||||
* | Update ActionCable guide to better describe SubscriptionAdapter configuration. | Chad Ingram | 2017-01-17 | 1 | -3/+22 |
| | |||||
* | Abuse of protected in guides | Akira Matsuda | 2016-12-25 | 1 | -1/+1 |
| | |||||
* | Suggested edits | Javier Cuevas | 2016-10-13 | 1 | -3/+3 |
| | |||||
* | Improve Action Cable Overview guide | Javier Cuevas | 2016-10-13 | 1 | -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-s | 2016-10-05 | 1 | -1/+1 |
| | |||||
* | Merge branch 'master' of github.com:rails/docrails | Vijay Dev | 2016-08-21 | 1 | -2/+2 |
|\ | |||||
| * | Fix remaining broadcasting_name example from Action Cable guide [ci skip] | Prathamesh Sonpatki | 2016-08-12 | 1 | -2/+2 |
| | | | | | | | | - Followup of https://github.com/rails/rails/pull/26125. | ||||
* | | [ci skip] Fix documentation wrong for ActionCable | Eric Zhang | 2016-08-12 | 1 | -1/+1 |
| | | |||||
* | | [ci skip] Fix documentation for ActionCable::Channel#broadcast_to | Eric Zhang | 2016-08-12 | 1 | -2/+2 |
|/ | |||||
* | Update ActionCable Rebroadcasting a Message documentation | Joseph Mullins | 2016-07-12 | 1 | -1/+1 |
| | | | | Replace broadcast_to with ActionCable.server.broadcast to be inline with its partner, #stream_from | ||||
* | Add header demarcation to Action Cable guide | Josh Justice | 2016-07-05 | 1 | -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 M | 2016-06-15 | 1 | -3/+4 |
| | |||||
* | Expand on AC introduction list [ci skip] | Vipul A M | 2016-06-07 | 1 | -0/+2 |
| | |||||
* | Merge branch 'master' of github.com:rails/docrails | Vijay Dev | 2016-06-03 | 1 | -1/+1 |
|\ | | | | | | | | | Conflicts: guides/source/action_cable_overview.md | ||||
| * | Light edits to Action Cable Overview guide | Jon Moss | 2016-05-28 | 1 | -3/+3 |
| | | | | | | | | [ci skip] | ||||
* | | [ci skip]Fix wrong require path raising LoadError | willnet | 2016-05-29 | 1 | -1/+1 |
| | | |||||
* | | [ci skip] Fix ActionCable Guides | willnet | 2016-05-27 | 1 | -1/+1 |
| | | | | | | | | Default worker pool size was changed from 100 to 4 at #24376 | ||||
* | | edit pass over the cable guide [ci skip] | Xavier Noria | 2016-05-14 | 1 | -143/+181 |
|/ | |||||
* | change cable.coffee to cable.js [ci skip] | yuuji.yaginuma | 2016-05-07 | 1 | -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 --> https | Jon Moss | 2016-05-06 | 1 | -1/+1 |
| | | | | [ci skip] | ||||
* | Merge branch 'master' of github.com:rails/docrails | Vijay Dev | 2016-04-29 | 1 | -7/+8 |
|\ | | | | | | | | | Conflicts: guides/source/configuring.md | ||||
| * | [ci skip] Fix formatting of code snippet in Action Cable guide | Prathamesh Sonpatki | 2016-04-05 | 1 | -7/+8 |
| | | |||||
* | | update example to specify the Action Cable mount path [ci skip] | yuuji.yaginuma | 2016-04-15 | 1 | -4/+5 |
| | | | | | | | | Follow up to 8b69f1e | ||||
* | | fix typo in file path [ci skip] | yuuji.yaginuma | 2016-04-10 | 1 | -4/+4 |
|/ | |||||
* | Remove extra 'the' and unwanted comma [ci skip] | Santosh Wadghule | 2016-03-08 | 1 | -1/+1 |
| | |||||
* | Fix formatting in Action Cable guide [ci skip] | Prathamesh Sonpatki | 2016-02-28 | 1 | -0/+1 |
| | |||||
* | Fix merge conflict in Action Cable guide [ci skip] | Prathamesh Sonpatki | 2016-02-28 | 1 | -5/+2 |
| | |||||
* | Further cleanup of the cable guide | David Heinemeier Hansson | 2016-02-28 | 1 | -100/+51 |
| | |||||
* | Fix typos in Action Cable guide [ci skip] | Prathamesh Sonpatki | 2016-02-28 | 1 | -25/+25 |
| | |||||
* | Header Typo | David Kuhta | 2016-02-23 | 1 | -1/+1 |
| | |||||
* | `stream_for` example | David Kuhta | 2016-02-23 | 1 | -0/+15 |
| |