rails/actioncable/lib/action_cable/connection.rb

17 lines
349 B
Ruby
Raw Normal View History

2015-04-04 05:26:14 +00:00
module ActionCable
module Connection
extend ActiveSupport::Autoload
eager_autoload do
autoload :Authorization
autoload :Base
autoload :Identification
autoload :InternalChannel
autoload :MessageBuffer
autoload :WebSocket
autoload :Subscriptions
autoload :TaggedLoggerProxy
end
2015-04-04 05:26:14 +00:00
end
end