aboutsummaryrefslogtreecommitdiffstats
path: root/actioncable/lib/rails/generators/channel/USAGE
blob: 5e43a32384b4f5fa926e1c805d0a52a188277899 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Description:
============
    Stubs out a new cable channel for the server (in Ruby) and client (in CoffeeScript).
    Pass the chanel name, either CamelCased or under_scored, and an optional list of channel actions as arguments.

    Note: Turn on the cable connection in app/assets/javascript/cable.coffee after generating any channels.

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