diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2015-12-15 16:38:25 +0100 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2015-12-15 16:38:25 +0100 |
commit | 5b56abb27be4f3524f96d3d04585178f3df459d7 (patch) | |
tree | 7045136d0463f870b715fed94b4889661d6dc267 /actioncable/README.md | |
parent | a8db0328a5452130b87b568b66fbd125eb10d45d (diff) | |
parent | 8625518725575de5524405b264d901b691fce066 (diff) | |
download | rails-5b56abb27be4f3524f96d3d04585178f3df459d7.tar.gz rails-5b56abb27be4f3524f96d3d04585178f3df459d7.tar.bz2 rails-5b56abb27be4f3524f96d3d04585178f3df459d7.zip |
Merge pull request #22600 from javan/update-action-cable
Bring latest changes over from actioncable/master
Diffstat (limited to 'actioncable/README.md')
-rw-r--r-- | actioncable/README.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/actioncable/README.md b/actioncable/README.md index 1781e3e82e..aa771f52c0 100644 --- a/actioncable/README.md +++ b/actioncable/README.md @@ -91,7 +91,7 @@ The client-side needs to setup a consumer instance of this connection. That's do #= require cable @App = {} -App.cable = Cable.createConsumer "ws://cable.example.com" +App.cable = Cable.createConsumer("ws://cable.example.com") ``` The ws://cable.example.com address must point to your set of Action Cable servers, and it @@ -402,7 +402,7 @@ bundle exec puma -p 28080 cable/config.ru ``` The above will start a cable server on port 28080. Remember to point your client-side setup against that using something like: -`App.cable.createConsumer('ws://basecamp.dev:28080')`. +`App.cable = Cable.createConsumer("ws://basecamp.dev:28080")`. ### In app @@ -415,7 +415,7 @@ Example::Application.routes.draw do end ``` -You can use `App.cable.createConsumer('ws://' + window.location.host + '/websocket')` to connect to the cable server. +You can use `App.cable = Cable.createConsumer("/websocket")` to connect to the cable server. For every instance of your server you create and for every worker your server spawns, you will also have a new instance of ActionCable, but the use of Redis keeps messages synced across connections. |