anycable 1.5.1 โ†’ 1.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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +10 -1
  3. data/README.md +9 -57
  4. metadata +19 -17
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a8be543b0bbbb351ca54a9e89c6e4d436000107ec35d54cb7dec49bf72396b08
4
- data.tar.gz: b0a84b0e6233a2ffb197bd851994b16e97a62b7577ff42bce283d7d1dc283758
3
+ metadata.gz: 5c3ee3f846f17e73db1f31db86a012f6126c08e63bb48f033a503b61edf0c3b3
4
+ data.tar.gz: ad8c265c1fc69752344c1feaf1f3b2e68d19881b49376f0ee1cd491b95b719db
5
5
  SHA512:
6
- metadata.gz: b731a6bad0ee875c2c2ea6d37712464c008b533d59918767e748d84e5acc8f907182766a4dd4413530734d4b78d5d87b896c4cf24b06ac8bde813acf4af5c0a9
7
- data.tar.gz: 4fafe71fdb4309ac3a60cc1405ff1b09600883f064aa46caf72eafebf803afd2de4f9474c9ad98f4ebaf2daa42575693db972b4ce8a740174606285c9a46bac5
6
+ metadata.gz: 369bebae1f7a0d31eaf6ae744379ea024ca1e811cc666f14aa414810f45820e059806a758ca1c682d9d218f48493eeaef787c78a34d7f74f981aa1c46058a912
7
+ data.tar.gz: 9ea813163005c08821657a9b84d44f83ab9d40c469767982e26a6f709705ed8e4e1f9048f8934d2feec55ed199edb69703861364c96d4d3d3f0e73ad1ed510c4
data/CHANGELOG.md CHANGED
@@ -2,6 +2,14 @@
2
2
 
3
3
  ## master
4
4
 
5
+ ## 1.6.0 (2025-03-18)
6
+
7
+ - Add presence support. ([@palkan][])
8
+
9
+ ## 1.5.2 (2024-12-27)
10
+
11
+ - Update google-protobuf to version 4 (support Ruby 3.4). ([@le0pard][])
12
+
5
13
  ## 1.5.1 (2024-06-14) ๐Ÿ‡ช๐Ÿ‡บ โšฝ๏ธ
6
14
 
7
15
  - Fixed compatibility with Rack 3.1 ([@earlopain][])
@@ -209,10 +217,11 @@ See [#71](https://github.com/anycable/anycable/pull/71).
209
217
 
210
218
  ---
211
219
 
212
- See [Changelog](https://github.com/anycable/anycable/blob/0-6-stable/CHANGELOG.md) for versions <1.0.0.
220
+ See [Changelog](https://github.com/anycable/anycable-rb/blob/0-6-stable/CHANGELOG.md) for versions <1.0.0.
213
221
 
214
222
  [@palkan]: https://github.com/palkan
215
223
  [@smasry]: https://github.com/smasry
216
224
  [@Envek]: https://github.com/Envek
217
225
  [@cylon-v]: https://github.com/cylon-v
218
226
  [@earlopain]: https://github.com/earlopain
227
+ [@le0pard]: https://github.com/le0pard
data/README.md CHANGED
@@ -1,77 +1,29 @@
1
1
  [![Gem Version](https://badge.fury.io/rb/anycable.svg)](https://rubygems.org/gems/anycable)
2
- [![Build](https://github.com/anycable/anycable/workflows/Build/badge.svg)](https://github.com/anycable/anycable/actions)
3
- [![Coverage Status](https://coveralls.io/repos/github/anycable/anycable/badge.svg?branch=master)](https://coveralls.io/github/anycable/anycable?branch=master)
4
- [![Documentation](https://img.shields.io/badge/docs-link-brightgreen.svg)](https://docs.anycable.io/v1)
2
+ [![Build](https://github.com/anycable/anycable-rb/workflows/Build/badge.svg)](https://github.com/anycable/anycable-rb/actions)
3
+ [![Documentation](https://img.shields.io/badge/docs-link-brightgreen.svg)](https://docs.anycable.io)
5
4
 
6
- # AnyCable
5
+ # AnyCable Ruby SDK
7
6
 
8
7
  <img align="right" height="150" width="129"
9
8
  title="AnyCable logo" src="https://docs.anycable.io/assets/images/logo.svg">
10
9
 
11
- AnyCable allows you to use any WebSocket server (written in any language) as a replacement for your Ruby server (such as Faye, Action Cable, etc).
10
+ [AnyCable](https://anycable.io) is an open-source language-agnostic realtime server for reliable two-way communication. This repository contains the Ruby SDK for AnyCable including RPC server implementations, broadcasting adapters and other utilities that could help you to integrate AnyCable into any Ruby application. For Rails integration, check out a dedicated gem: [anycable-rails](https://github.com/anycable/anycable-rails).
12
11
 
13
- AnyCable uses the same protocol as ActionCable, so you can use its [JavaScript client](https://www.npmjs.com/package/actioncable) without any monkey-patching.
14
-
15
- > [AnyCable Pro](https://docs.anycable.io/pro) has been launched ๐Ÿš€
16
-
17
- <a href="https://evilmartians.com/">
18
- <img src="https://evilmartians.com/badges/sponsored-by-evil-martians.svg" alt="Sponsored by Evil Martians" width="236" height="54"></a>
12
+ ๐ŸŒ [Website](https://anycable.io) ยท ๐Ÿ“š [Documentation](https://docs.anycable.io/ruby/non_rails)
19
13
 
20
14
  ## Requirements
21
15
 
22
- - Ruby >= 2.7
23
- - Redis or NATS (for broadcasting **in production**, [discuss other options](https://github.com/anycable/anycable/issues/2) with us!)
24
-
25
- ## Usage
16
+ - Ruby 3.0+.
26
17
 
27
- Check out our ๐Ÿ“‘ [Documentation](https://docs.anycable.io/v1).
28
-
29
- ## Links
18
+ ## Resources
30
19
 
31
20
  - [AnyCable off Rails: connecting Twilio streams with Hanami](https://evilmartians.com/chronicles/anycable-goes-off-rails-connecting-twilio-streams-with-hanami)
32
21
 
33
- - [AnyCable 1.0: Four years of real-time web with Ruby and Go](https://evilmartians.com/chronicles/anycable-1-0-four-years-of-real-time-web-with-ruby-and-go)
34
-
35
- - [AnyCable: Action Cable on steroids!](https://evilmartians.com/chronicles/anycable-actioncable-on-steroids)
36
-
37
- - [Connecting LiteCable to Hanami](http://gabrielmalakias.com.br/ruby/hanami/iot/2017/05/26/websockets-connecting-litecable-to-hanami.html) by [@GabrielMalakias](https://github.com/GabrielMalakias)
38
-
39
- - [From Action to Any](https://medium.com/@leshchuk/from-action-to-any-1e8d863dd4cf) by [@alekseyl](https://github.com/alekseyl)
40
-
41
- ## Talks
42
-
43
- - High-speed cables for Ruby, RubyConf 2018, [slides](https://speakerdeck.com/palkan/rubyconf-2018-high-speed-cables-for-ruby) and [video](https://www.youtube.com/watch?v=8XRcOZXOzV4) (EN)
44
-
45
- - One cable to rule them all, RubyKaigi 2018, [slides](https://speakerdeck.com/palkan/rubykaigi-2018-anycable-one-cable-to-rule-them-all) and [video](https://www.youtube.com/watch?v=jXCPuNICT8s) (EN)
46
-
47
- - Wroc_Love.rb 2018 [slides](https://speakerdeck.com/palkan/wroc-love-dot-rb-2018-cables-cables-cables) and [video](https://www.youtube.com/watch?v=AUxFFOehiy0) (EN)
48
-
49
- - RubyConfMY 2017 [slides](https://speakerdeck.com/palkan/rubyconf-malaysia-2017-anycable) and [video](https://www.youtube.com/watch?v=j5oFx525zNw) (EN)
50
-
51
- - RailsClub Moscow 2016 [slides](https://speakerdeck.com/palkan/railsclub-moscow-2016-anycable) and [video](https://www.youtube.com/watch?v=-k7GQKuBevY&list=PLiWUIs1hSNeOXZhotgDX7Y7qBsr24cu7o&index=4) (RU)
52
-
53
- ## Building
54
-
55
- ### Generating gRPC files from `.proto`
56
-
57
- - Install required GRPC gems:
58
-
59
- ```sh
60
- gem install grpc
61
- gem install grpc-tools
62
- ```
63
-
64
- - Re-generate GRPC files (if necessary):
65
-
66
- ```sh
67
- make
68
- ```
69
-
70
22
  ## Contributing
71
23
 
72
- Bug reports and pull requests are welcome on GitHub at [https://github.com/anycable/anycable](https://github.com/anycable/anycable).
24
+ Bug reports and pull requests are welcome on GitHub at [https://github.com/anycable/anycable-rb](https://github.com/anycable/anycable-rb).
73
25
 
74
- Please, provide reproduction script (using [this template](https://github.com/anycable/anycable/blob/master/etc/bug_report_template.rb)) when submitting bugs if possible.
26
+ Please, provide reproduction script (using [this template](https://github.com/anycable/anycable-rb/blob/master/etc/bug_report_template.rb)) when submitting bugs if possible.
75
27
 
76
28
  ## License
77
29
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: anycable
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.1
4
+ version: 1.6.0
5
5
  platform: ruby
6
6
  authors:
7
- - palkan
8
- autorequire:
7
+ - Vladimir Dementyev
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-06-14 00:00:00.000000000 Z
11
+ date: 2025-03-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: anycable-core
@@ -16,29 +16,30 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 1.5.1
19
+ version: 1.6.0
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.1
26
+ version: 1.6.0
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: grpc
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '1.53'
33
+ version: '1.6'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: '1.53'
41
- description: AnyCable is a polyglot replacement for ActionCable-compatible servers
40
+ version: '1.6'
41
+ description: Ruby SDK for AnyCable, an open-source realtime server for reliable two-way
42
+ communication
42
43
  email:
43
44
  - dementiev.vm@gmail.com
44
45
  executables: []
@@ -48,17 +49,17 @@ files:
48
49
  - CHANGELOG.md
49
50
  - MIT-LICENSE
50
51
  - README.md
51
- homepage: http://github.com/anycable/anycable
52
+ homepage: http://github.com/anycable/anycable-rb
52
53
  licenses:
53
54
  - MIT
54
55
  metadata:
55
- bug_tracker_uri: http://github.com/anycable/anycable/issues
56
- changelog_uri: https://github.com/anycable/anycable/blob/master/CHANGELOG.md
56
+ bug_tracker_uri: http://github.com/anycable/anycable-rb/issues
57
+ changelog_uri: https://github.com/anycable/anycable-rb/blob/master/CHANGELOG.md
57
58
  documentation_uri: https://docs.anycable.io/
58
59
  homepage_uri: https://anycable.io/
59
- source_code_uri: http://github.com/anycable/anycable
60
+ source_code_uri: http://github.com/anycable/anycable-rb
60
61
  funding_uri: https://github.com/sponsors/anycable
61
- post_install_message:
62
+ post_install_message:
62
63
  rdoc_options: []
63
64
  require_paths:
64
65
  - lib
@@ -66,7 +67,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
66
67
  requirements:
67
68
  - - ">="
68
69
  - !ruby/object:Gem::Version
69
- version: 2.7.0
70
+ version: '0'
70
71
  required_rubygems_version: !ruby/object:Gem::Requirement
71
72
  requirements:
72
73
  - - ">="
@@ -74,7 +75,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
74
75
  version: '0'
75
76
  requirements: []
76
77
  rubygems_version: 3.4.19
77
- signing_key:
78
+ signing_key:
78
79
  specification_version: 4
79
- summary: AnyCable is a polyglot replacement for ActionCable-compatible servers
80
+ summary: Ruby SDK for AnyCable, an open-source realtime server for reliable two-way
81
+ communication
80
82
  test_files: []