Sha256: f47a7d7d55251441fd052d0f156f6af604475648652147c9708da8cbaa940da2

Contents?: true

Size: 850 Bytes

Versions: 51

Compression:

Stored size: 850 Bytes

Contents

# frozen_string_literal: true

module ActionCable
  module Channel
    module Naming
      extend ActiveSupport::Concern

      module ClassMethods
        # 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'
        #   FooChats::BarAppearancesChannel.channel_name # => 'foo_chats:bar_appearances'
        def channel_name
          @channel_name ||= name.delete_suffix("Channel").gsub("::", ":").underscore
        end
      end

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

Version data entries

51 entries across 49 versions & 4 rubygems

Version Path
rails_mini_profiler-0.2.0 vendor/bundle/ruby/3.0.0/gems/actioncable-6.1.4/lib/action_cable/channel/naming.rb
actioncable-6.1.4 lib/action_cable/channel/naming.rb
actioncable-6.1.3.2 lib/action_cable/channel/naming.rb
actioncable-6.1.3.1 lib/action_cable/channel/naming.rb
actioncable-6.1.3 lib/action_cable/channel/naming.rb
actioncable-6.1.2.1 lib/action_cable/channel/naming.rb
actioncable-6.1.2 lib/action_cable/channel/naming.rb
actioncable-6.1.1 lib/action_cable/channel/naming.rb
actioncable-6.1.0 lib/action_cable/channel/naming.rb
actioncable-6.1.0.rc2 lib/action_cable/channel/naming.rb
actioncable-6.1.0.rc1 lib/action_cable/channel/naming.rb