File: C:/Ruby27-x64/lib/ruby/gems/2.7.0/gems/actioncable-7.0.4.2/lib/rails/generators/channel/USAGE
Description:
============
Generates a new cable channel for the server (in Ruby) and client (in JavaScript).
Pass the channel name, either CamelCased or under_scored, and an optional list of channel actions as arguments.
Example:
========
bin/rails generate channel Chat speak
creates a Chat channel class, test and JavaScript asset:
Channel: app/channels/chat_channel.rb
Test: test/channels/chat_channel_test.rb
Assets: $JAVASCRIPT_PATH/channels/chat_channel.js