anycable-rails 1.5.3 → 1.5.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/README.md +4 -8
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6795af87acd07761f25d6303103b6fb80a4dcf5b0d0b4b10bf3654647efd6f32
|
4
|
+
data.tar.gz: 91159ce045126af9b4ad0405c5a760dc7c5eb1a60634853528b67e3a5f74d57d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 781cbc8f3c23a030e4d5d3ed457cd3b66cd5f687e989517904a6ab7f282a8321ae1a9ac837e5cf5f41927560bd39fa10a06f1a93f6d59b88a6b62a7f6c5b870e
|
7
|
+
data.tar.gz: 07112b99feced58dcde91f00841701492460578040a9bc2a70c8a07a9dda21486e740e75083d79e197b2a023fafa37fb477e0fa3fa2c8d5a2e604d2fa0e770ee
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,12 @@
|
|
2
2
|
|
3
3
|
## master
|
4
4
|
|
5
|
+
## 1.5.4 (2024-10-08)
|
6
|
+
|
7
|
+
- Add [actioncable-next](https://github.com/anycable/actioncable-next) support. ([@palkan][])
|
8
|
+
|
9
|
+
- Generate `anycable.toml` in `anycable:setup` generator. ([@palkan][])
|
10
|
+
|
5
11
|
## 1.5.3 (2024-09-12)
|
6
12
|
|
7
13
|
- Set upper limit on supported Rails versions. ([@palkan][])
|
data/README.md
CHANGED
@@ -8,8 +8,6 @@ AnyCable allows you to use any WebSocket server (written in any language) as a r
|
|
8
8
|
|
9
9
|
With AnyCable you can use channels, client-side JS, broadcasting - (almost) all that you can do with Action Cable.
|
10
10
|
|
11
|
-
You can even use Action Cable in development and not be afraid of [compatibility issues](#compatibility).
|
12
|
-
|
13
11
|
💾 [Example Application](https://github.com/anycable/anycable_rails_demo)
|
14
12
|
|
15
13
|
📑 [Documentation](https://docs.anycable.io/rails/getting_started).
|
@@ -21,9 +19,10 @@ You can even use Action Cable in development and not be afraid of [compatibility
|
|
21
19
|
|
22
20
|
## Requirements
|
23
21
|
|
24
|
-
- Ruby >=
|
25
|
-
- Rails >= 6.0
|
26
|
-
|
22
|
+
- Ruby >= 3.1
|
23
|
+
- Rails >= 6.0\*
|
24
|
+
|
25
|
+
\* Recent `anycable-rails` versions only work with Rails 8+; older versions compatible with Rails 6 and Rails 7 still receive fixes and minor updates (patch releases).
|
27
26
|
|
28
27
|
## Usage
|
29
28
|
|
@@ -31,9 +30,6 @@ Add `anycable-rails` gem to your Gemfile:
|
|
31
30
|
|
32
31
|
```ruby
|
33
32
|
gem "anycable-rails"
|
34
|
-
|
35
|
-
# when using Redis broadcast adapter
|
36
|
-
gem "redis", ">= 4.0"
|
37
33
|
```
|
38
34
|
|
39
35
|
### Interactive set up
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: anycable-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.5.
|
4
|
+
version: 1.5.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- palkan
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-09
|
11
|
+
date: 2024-10-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: anycable-rails-core
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 1.5.
|
19
|
+
version: 1.5.4
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - '='
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 1.5.
|
26
|
+
version: 1.5.4
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: anycable
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|