anycable-rails 1.1.0.rc1 → 1.1.0.rc1.1

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1cf996e781322b7becc433bf984818a12961d26b0eb2b21429f3c40bdc076b51
4
- data.tar.gz: 880681dd3742f032553906f730e5eec9618dedec32d05dff7b474e7a567f42a4
3
+ metadata.gz: 33403e16cdec9dcc23b463e6545da2fc099e553904c1613f33325fa0a859a648
4
+ data.tar.gz: 02cba22030f78425799d289769b49520ca660a38142637c6df5afe3a8b2f4310
5
5
  SHA512:
6
- metadata.gz: e02e9ee1686ef5474400961c271ce55aba57c29c9d9843e0c8f90f7343366ddc753aedfc29e4136d11bc9acbb3b27787052f10f9d3521fcbb9df2598a890cff7
7
- data.tar.gz: 7bed57ab2cc71df212205b1c79ed926384804e1ce917f43bf028c7a855087b8fdbdbf9da10ec236d4c15ed8edae5a2ede8704a93540a4773520c4fe7f135129a
6
+ metadata.gz: 1942550b2959eeec5fa8688489027bb127b25b8a564d2d5b2a004bd6e762ef100a698398af22f5e3af12b203d2588046f375a1fc9b5ecc98cbafb0dc5c6545f1
7
+ data.tar.gz: 677fb04bdf6256b8f5b93c8088453584b31131dbcf69fa63991b7a9246fe795cb756e2e5c4b13207505fd9df903946435e295a9ef9849b5f62c5d26af0dd57ed
data/CHANGELOG.md CHANGED
@@ -2,7 +2,16 @@
2
2
 
3
3
  ## master
4
4
 
5
- ## 1.1.0.rc1
5
+ ## 1.1.0.rc1.1 (2021-05-12)
6
+
7
+ - Fixed config loading regression introduced in 1.1.0.rc1.
8
+
9
+ ## 1.1.0.rc1 (2021-05-12)
10
+
11
+ - Adding `anycable` or `grpc` gem as an explicit dependency is required.
12
+
13
+ Now, `anycable-rails` depends on `anycable-core`, which doesn't include gRPC server implementation.
14
+ You should either add `anycable` or `grpc` (>= 1.37) gem as an explicit dependency.
6
15
 
7
16
  - Add option to embed AnyCable RPC into a Rails server process. ([@palkan][])
8
17
 
data/README.md CHANGED
@@ -26,9 +26,10 @@ You can even use Action Cable in development and not be afraid of [compatibility
26
26
 
27
27
  ## Usage
28
28
 
29
- Add `anycable-rails` gem to your Gemfile:
29
+ Add `anycable-rails` and `anycable` gems to your Gemfile:
30
30
 
31
31
  ```ruby
32
+ gem "anycable"
32
33
  gem "anycable-rails"
33
34
 
34
35
  # when using Redis broadcast adapter
@@ -1,6 +1,9 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require "anycable/config"
4
+ # Make sure Rails extensions for Anyway Config are loaded
5
+ # See https://github.com/anycable/anycable-rails/issues/63
6
+ require "anyway/rails"
4
7
 
5
8
  # Extend AnyCable configuration with:
6
9
  # - `access_logs_disabled` (defaults to true) — whether to print Started/Finished logs
@@ -2,6 +2,6 @@
2
2
 
3
3
  module AnyCable
4
4
  module Rails
5
- VERSION = "1.1.0.rc1"
5
+ VERSION = "1.1.0.rc1.1"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: anycable-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0.rc1
4
+ version: 1.1.0.rc1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - palkan