anyt 0.8.3 → 0.8.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dc11a5ff81965c5f58e9fa188dc50b77c922b55b6ebd4bb37e7f008619b7ebdd
4
- data.tar.gz: 11dba8960b7d37b7220451a2bf3b2b6ca611c91e48a19a1a9c719af72527b942
3
+ metadata.gz: 5d5f7807ac9fa8e92862e1b8ba81958cf0130df6dcc5b95d71116703704be5b5
4
+ data.tar.gz: 37771cdad907f4e76ee36d51d81eef74d38522fe203adaafc213a525f4115d1d
5
5
  SHA512:
6
- metadata.gz: 5f81a9f004d643dd129b601026bf25981b6ad769970cff6bd00cbd74f3fa278bc258798e5a4ac7875c61ed9b0c3dffe312ebade12d0c514f6ffac8984612e5d4
7
- data.tar.gz: 9d79a8212dc54a3b9230b71bfb469232a4e71f03c4df0a9844dab8a30f3fdc809a503270d0ab8e64242b5a9b1b5b963366e7e8d089aa952804373d170c050f68
6
+ metadata.gz: 36e30d51974fe134a6fa38a547f9b4dda9ddbddb8e4799a9c7cb21e7c059e3268f2f0c233a9bea251d25b0fee4662fd74c0b47147bb7e377618d5530e43a31da
7
+ data.tar.gz: e787124ad771c0dd2a9129a6c5c862ee69add583fd223efe3d96078e22d41cd16725e7ad1bc95ebc30d69e630e6db71747ba9e19d70a36fe3657ce6ae0dadfe3
@@ -17,11 +17,7 @@ class TestApp < Rails::Application
17
17
  config.log_level = :fatal
18
18
  config.eager_load = true
19
19
 
20
- initializer "routes" do
21
- Rails.application.routes.draw do
22
- mount ActionCable.server => "/cable"
23
- end
24
- end
20
+ config.paths["config/routes.rb"] << File.join(__dir__, "routes.rb")
25
21
  end
26
22
 
27
23
  module ApplicationCable
@@ -0,0 +1,4 @@
1
+ # frozen_string_literal: true
2
+
3
+ Rails.application.routes.draw do
4
+ end
@@ -4,7 +4,7 @@ feature "Welcome" do
4
4
  scenario %{
5
5
  Client receives "welcome" message
6
6
  } do
7
- client = build_client
7
+ client = build_client(ignore: ["ping"])
8
8
  assert_equal client.receive, "type" => "welcome"
9
9
  end
10
10
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Anyt
4
- VERSION = "0.8.3"
4
+ VERSION = "0.8.4"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: anyt
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.3
4
+ version: 0.8.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - palkan
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-01-05 00:00:00.000000000 Z
11
+ date: 2019-01-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rack
@@ -262,6 +262,7 @@ files:
262
262
  - lib/anyt/config.rb
263
263
  - lib/anyt/dummy/application.rb
264
264
  - lib/anyt/dummy/config.ru
265
+ - lib/anyt/dummy/routes.rb
265
266
  - lib/anyt/ext/minitest.rb
266
267
  - lib/anyt/rpc.rb
267
268
  - lib/anyt/tests.rb