Package not found. Please check the package name and try again.
ksql 0.1.0.beta.1 → 0.1.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/Gemfile.lock +4 -4
- data/README.md +2 -5
- data/lib/ksql/stream.rb +1 -1
- data/lib/ksql/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b5da65772764a2a9351b9034ae4ffdac4d92b22c5081057c37c4e105c5c1921b
|
|
4
|
+
data.tar.gz: 855626eeb47f8c9c75c33482b63f45212b668e793b9cc0307669a1a5d0352d71
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 475985b1ff666f5accdd9158045e9dad42bd7a912ee1f508397d6f9024b9cd8ce0809abb51367582754afbdcb0adc06eb161ecfcd103893d40b20c1d52dcf621
|
|
7
|
+
data.tar.gz: d29e44966fe9f9641ae67688a6a446bb646b1f32a4e2800465a938e606a206ca3aa4a5c471e5554f2a10710f85fb5ce31fb63860e9670cbbf4bdf3938a546e79
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
ksql (0.1.
|
|
4
|
+
ksql (0.1.1)
|
|
5
5
|
activesupport (>= 5)
|
|
6
6
|
net-http2 (~> 0)
|
|
7
7
|
|
|
8
8
|
GEM
|
|
9
9
|
remote: https://rubygems.org/
|
|
10
10
|
specs:
|
|
11
|
-
activesupport (7.0.2.
|
|
11
|
+
activesupport (7.0.2.4)
|
|
12
12
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
13
13
|
i18n (>= 1.6, < 2)
|
|
14
14
|
minitest (>= 5.1)
|
|
15
15
|
tzinfo (~> 2.0)
|
|
16
16
|
ast (2.4.2)
|
|
17
17
|
byebug (11.1.3)
|
|
18
|
-
concurrent-ruby (1.1.
|
|
18
|
+
concurrent-ruby (1.1.10)
|
|
19
19
|
diff-lcs (1.5.0)
|
|
20
20
|
http-2 (0.11.0)
|
|
21
21
|
i18n (1.10.0)
|
|
@@ -71,4 +71,4 @@ DEPENDENCIES
|
|
|
71
71
|
rubocop (~> 1)
|
|
72
72
|
|
|
73
73
|
BUNDLED WITH
|
|
74
|
-
2.3.
|
|
74
|
+
2.3.9
|
data/README.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
## <img src="https://user-images.githubusercontent.com/50866745/156314925-b823bfe2-a9d4-4b83-8376-29a6a659b57f.png" width="48"> ksqlDB Client <!-- omit in toc -->
|
|
2
2
|

|
|
3
3
|

|
|
4
|
+

|
|
4
5
|
|
|
5
6
|
KSQL is a [ksqlDB](https://ksqldb.io/) Ruby client that focuses on ease of use. Supports all recent ksqlDB features and does not have any heavyweight dependencies.
|
|
6
7
|
|
|
@@ -64,6 +65,7 @@ The gem requires a minimum configuration to connect to ksqlDB, it is shipped wit
|
|
|
64
65
|
```Ruby
|
|
65
66
|
Ksql.configure do |config|
|
|
66
67
|
config.host = 'http://localhost:8088' # Required
|
|
68
|
+
# config.auth = 'user:password' # optional
|
|
67
69
|
end
|
|
68
70
|
```
|
|
69
71
|
|
|
@@ -342,11 +344,6 @@ Ksql::Client.ksql('DROP STREAM IF EXISTS riderLocations;')
|
|
|
342
344
|
| ------ | -- |
|
|
343
345
|
| 0.23.1 | :heavy_check_mark: Supported |
|
|
344
346
|
| 0.22.0 | :heavy_check_mark: Supported |
|
|
345
|
-
| 0.21.0 | :heavy_check_mark: Supported |
|
|
346
|
-
| 0.20.0 | :heavy_check_mark: Supported |
|
|
347
|
-
| 0.19.0 | :heavy_check_mark: Supported |
|
|
348
|
-
| 0.18.0 | :heavy_check_mark: Supported |
|
|
349
|
-
| 0.17.0 | :x: Untested |
|
|
350
347
|
| Older | :x: Untested |
|
|
351
348
|
|
|
352
349
|
## Known issues
|
data/lib/ksql/stream.rb
CHANGED
data/lib/ksql/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ksql
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Lapo Elisacci
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-
|
|
11
|
+
date: 2022-05-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -98,11 +98,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
98
98
|
version: 2.6.0
|
|
99
99
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
100
100
|
requirements:
|
|
101
|
-
- - "
|
|
101
|
+
- - ">="
|
|
102
102
|
- !ruby/object:Gem::Version
|
|
103
|
-
version:
|
|
103
|
+
version: '0'
|
|
104
104
|
requirements: []
|
|
105
|
-
rubygems_version: 3.3.
|
|
105
|
+
rubygems_version: 3.3.7
|
|
106
106
|
signing_key:
|
|
107
107
|
specification_version: 4
|
|
108
108
|
summary: Kafka ksqlDB Client for Ruby
|