debian-mirror-gitlab/debian/gems-compat/actioncable-5.1.6.1/lib/action_cable/connection.rb

20 lines
433 B
Ruby
Raw Normal View History

module ActionCable
module Connection
extend ActiveSupport::Autoload
eager_autoload do
autoload :Authorization
autoload :Base
autoload :ClientSocket
autoload :Identification
autoload :InternalChannel
autoload :MessageBuffer
autoload :Stream
autoload :StreamEventLoop
autoload :Subscriptions
autoload :TaggedLoggerProxy
autoload :WebSocket
end
end
end