turbo-replay 0.1.1 → 0.1.2

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 (3) hide show
  1. checksums.yaml +4 -4
  2. data/lib/turbo/replay/version.rb +1 -1
  3. metadata +6 -5
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: abe7572c62c8e9b824b44428d238bb7fb99cc4efd69ba2515d931634a8db8e8c
4
- data.tar.gz: 2b7701bddfb6941f3bd53aa877fd83d9788fc8a3681c773705f5ff8770ad9df6
3
+ metadata.gz: 8e144c469bad7b9334ed24b50e62c3eb5d2ae57a03f94df331c1f9eebf5e832c
4
+ data.tar.gz: 1a6787bd110f8b6dbdcfb53a565d64f15525f7872ebcb46a45dc5f76a57dd516
5
5
  SHA512:
6
- metadata.gz: 1aaa04169166308ded72caee2f1c2903b0cfc57951d75755494346309ca387fa9c7bec50da051c203040ec57162b49f3acca76788b7f83976ca9b4b8db0dc945
7
- data.tar.gz: 0472f0f884358bab6d623a2f107a473520a5e87032fc2cb6045c48b3b00364e8518ba429c84cf4e21698ce4d1392da74dd9c7c4f586ecb5906e3e6944a427edc
6
+ metadata.gz: 58e04e4e549363e87fa7d477f1087f477eadbbe6e0890f76f1c2074e697fb46644503a3a7d0a309eb0cd66d71acef41981db8b86481109eec80ea957b2e36a90
7
+ data.tar.gz: 816600dc2b7cfee8b5e64d38be9fcc35bedc209b5c125999debcfaa5f0747eb6fc380ad09dde9065c25892e1a5b3a658f6c247a5ddcb3a7db4c0bffbcc31b925
@@ -1,5 +1,5 @@
1
1
  module Turbo
2
2
  module Replay
3
- VERSION = "0.1.1"
3
+ VERSION = "0.1.2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: turbo-replay
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Luiz Vasconcellos
@@ -80,8 +80,9 @@ dependencies:
80
80
  - - ">="
81
81
  - !ruby/object:Gem::Version
82
82
  version: '0'
83
- description: Turbo-Replay caches events sent to channels and re-sends them in order
84
- when clients have flaky network.
83
+ description: turbo-replay assigns a sequence number to broadcasted messages and caches
84
+ them. When a client disconnects because of flaky network, we're able to resend (or
85
+ replay, hence the name) missed messages in the same order they were originally sent.
85
86
  email:
86
87
  - luizpvasc@gmail.com
87
88
  executables: []
@@ -123,14 +124,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
123
124
  requirements:
124
125
  - - ">="
125
126
  - !ruby/object:Gem::Version
126
- version: '0'
127
+ version: 2.6.0
127
128
  required_rubygems_version: !ruby/object:Gem::Requirement
128
129
  requirements:
129
130
  - - ">="
130
131
  - !ruby/object:Gem::Version
131
132
  version: '0'
132
133
  requirements: []
133
- rubygems_version: 3.3.7
134
+ rubygems_version: 3.0.9
134
135
  signing_key:
135
136
  specification_version: 4
136
137
  summary: Never miss a single websocket event ever again.