cable_room 0.5.5 → 0.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
File without changes
data/spec/spec_helper.rb DELETED
@@ -1,24 +0,0 @@
1
- require 'bundler'
2
-
3
- Bundler.require :default, :development
4
-
5
- Combustion.initialize! :action_cable, :action_controller, :active_job
6
-
7
- require 'active_support'
8
- require 'active_support/core_ext/module'
9
-
10
- require 'rspec/rails'
11
- require 'action-cable-testing'
12
-
13
- # Force ActionCable to use async adapter for real message delivery in tests
14
- # This overrides action-cable-testing's default test adapter
15
- ActionCable.server.config.cable = { "adapter" => "async" }
16
-
17
- module ApplicationCable
18
- class Channel < ActionCable::Channel::Base
19
- end
20
- end
21
-
22
- RSpec.configure do |config|
23
- # config.include ActionCable::TestHelper
24
- end