aboutsummaryrefslogtreecommitdiffstats
path: root/lib/action_cable.rb
blob: 993c260e4989e0e55ded76bd8a08515c4050a8f5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'active_support'
require 'active_support/json'
require 'active_support/concern'
require 'active_support/core_ext/hash/indifferent_access'
require 'active_support/callbacks'

module ActionCable
  VERSION = '0.0.1'

  autoload :Channel, 'action_cable/channel'
  autoload :Worker, 'action_cable/worker'
  autoload :Server, 'action_cable/server'
end