2015-12-15 15:38:58 -05:00
|
|
|
Description:
|
|
|
|
============
|
2015-12-16 15:05:19 -05:00
|
|
|
Stubs out a new cable channel for the server (in Ruby) and client (in CoffeeScript).
|
2015-12-17 10:17:52 -05:00
|
|
|
Pass the channel name, either CamelCased or under_scored, and an optional list of channel actions as arguments.
|
2015-12-15 15:38:58 -05:00
|
|
|
|
2016-02-27 18:03:05 -05:00
|
|
|
Note: Turn on the cable connection in app/assets/javascript/cable.js after generating any channels.
|
2015-12-15 15:38:58 -05:00
|
|
|
|
|
|
|
Example:
|
|
|
|
========
|
|
|
|
rails generate channel Chat speak
|
|
|
|
|
|
|
|
creates a Chat channel class and CoffeeScript asset:
|
|
|
|
Channel: app/channels/chat_channel.rb
|
|
|
|
Assets: app/assets/javascript/channels/chat.coffee
|