aboutsummaryrefslogtreecommitdiffstats
path: root/actioncable/README.md
diff options
context:
space:
mode:
authorJavan Makhmali <javan@javan.us>2015-12-15 10:35:02 -0500
committerJavan Makhmali <javan@javan.us>2015-12-15 10:35:02 -0500
commit8625518725575de5524405b264d901b691fce066 (patch)
tree7045136d0463f870b715fed94b4889661d6dc267 /actioncable/README.md
parenta8db0328a5452130b87b568b66fbd125eb10d45d (diff)
downloadrails-8625518725575de5524405b264d901b691fce066.tar.gz
rails-8625518725575de5524405b264d901b691fce066.tar.bz2
rails-8625518725575de5524405b264d901b691fce066.zip
Bring latest changes over from actioncable/master
Diffstat (limited to 'actioncable/README.md')
-rw-r--r--actioncable/README.md6
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.