Sha256: 11addc0551ac14c64c70f3a81688de668910879f95c588626a4acbcfb6ee2665

Contents?: true

Size: 720 Bytes

Versions: 35

Compression:

Stored size: 720 Bytes

Contents

module ActionCable
  module Channel
    module Naming
      extend ActiveSupport::Concern

      class_methods do
        # Returns the name of the channel, underscored, without the <tt>Channel</tt> ending.
        # If the channel is in a namespace, then the namespaces are represented by single
        # colon separators in the channel name.
        #
        #   ChatChannel.channel_name # => 'chat'
        #   Chats::AppearancesChannel.channel_name # => 'chats:appearances'
        def channel_name
          @channel_name ||= name.sub(/Channel$/, '').gsub('::',':').underscore
        end
      end

      # Delegates to the class' <tt>channel_name</tt>
      delegate :channel_name, to: :class
    end
  end
end

Version data entries

35 entries across 35 versions & 4 rubygems

Version Path
actioncable-5.0.7.2 lib/action_cable/channel/naming.rb
actioncable-5.0.7.1 lib/action_cable/channel/naming.rb
actioncable-5.0.7 lib/action_cable/channel/naming.rb
actioncable-5.0.6 lib/action_cable/channel/naming.rb
actioncable-5.0.6.rc1 lib/action_cable/channel/naming.rb
actioncable-5.0.5 lib/action_cable/channel/naming.rb
actioncable-5.0.5.rc2 lib/action_cable/channel/naming.rb
actioncable-5.0.5.rc1 lib/action_cable/channel/naming.rb
actioncable-5.0.4 lib/action_cable/channel/naming.rb
actioncable-5.0.4.rc1 lib/action_cable/channel/naming.rb
actioncable-5.0.3 lib/action_cable/channel/naming.rb
enju_leaf-1.2.1 vendor/bundle/ruby/2.3/gems/actioncable-5.0.2/lib/action_cable/channel/naming.rb
actioncable-5.0.2 lib/action_cable/channel/naming.rb
actioncable-5.0.2.rc1 lib/action_cable/channel/naming.rb
autocompl-0.2.2 test/dummy/vendor/bundle/ruby/2.3.0/gems/actioncable-5.0.1/lib/action_cable/channel/naming.rb
autocompl-0.2.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/actioncable-5.0.1/lib/action_cable/channel/naming.rb
autocompl-0.2.0 test/dummy/vendor/bundle/ruby/2.3.0/gems/actioncable-5.0.1/lib/action_cable/channel/naming.rb
autocompl-0.1.2 test/dummy/vendor/bundle/ruby/2.3.0/gems/actioncable-5.0.1/lib/action_cable/channel/naming.rb
autocompl-0.1.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/actioncable-5.0.1/lib/action_cable/channel/naming.rb
autocompl-0.1.0 test/dummy/vendor/bundle/ruby/2.3.0/gems/actioncable-5.0.1/lib/action_cable/channel/naming.rb