From 16bee0f5bde72bf1e1833fddf36f8bdd2fc29390 Mon Sep 17 00:00:00 2001 From: henning mueller Date: Mon, 21 Dec 2015 09:35:37 +0100 Subject: Replaced "Cable" by "ActionCable" in CoffeeScript examples. --- actioncable/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'actioncable') diff --git a/actioncable/README.md b/actioncable/README.md index 32f49c215f..a73e05cffa 100644 --- a/actioncable/README.md +++ b/actioncable/README.md @@ -364,7 +364,7 @@ Then add the following line to your layout before your JavaScript tag: And finally, create your consumer like so: ```coffeescript -App.cable = Cable.createConsumer() +App.cable = ActionCable.createConsumer() ``` For a full list of all configuration options, see the `ActionCable::Server::Configuration` class. @@ -408,7 +408,7 @@ Example::Application.routes.draw do end ``` -You can use `App.cable = Cable.createConsumer("/websocket")` to connect to the cable server. +You can use `App.cable = ActionCable.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. -- cgit v1.2.3