1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/lib/action_cable.rb

13 lines
293 B
Ruby
Raw Normal View History

2015-01-14 11:29:31 -05:00
require 'cramp'
require 'active_support'
require 'active_support/json'
require 'active_support/concern'
require 'active_support/core_ext/hash/indifferent_access'
module ActionCable
VERSION = '0.0.1'
autoload :Channel, 'action_cable/channel'
autoload :Server, 'action_cable/server'
end