fluent-plugin-ddl-redis-store 0.2.1 → 0.3.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.
- checksums.yaml +4 -4
- data/fluent-plugin-ddl-redis-store.gemspec +3 -3
- data/test/plugin/test_out_redis_publish.rb +2 -4
- 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: e297bfd4b33f894d418409472cfe990597772affc569fecb1d1a371d9c45b19e
|
4
|
+
data.tar.gz: ec63c76ec0074f18da13daa82a4ca82a9a5b93d5e312eb2415d850d1095ff71c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5720f4a0aad3fe67fff9fcd8fee15f61a58e08e2868cdd4f2dfeb1e8ee46644ee950f81c6d99345737bcef8ac668ce2fb5927b605a2dd7b11567866cecf9b05d
|
7
|
+
data.tar.gz: 5d28612ac90fcdc9614b170eb706fa673cc0be75d7394e6e1394ffae0d042049c9c055960ae91dbea2a0872d7bcecfb6cb8cc0dbc75621ec3be5722173309312
|
@@ -1,13 +1,13 @@
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
2
2
|
Gem::Specification.new do |gem|
|
3
3
|
gem.name = "fluent-plugin-ddl-redis-store"
|
4
|
-
gem.email = "
|
5
|
-
gem.version = "0.
|
4
|
+
gem.email = "builds@dominodatalab.com"
|
5
|
+
gem.version = "0.3.0"
|
6
6
|
gem.authors = ["moaikids", "HANAI Tohru aka pokehanai"]
|
7
7
|
gem.licenses = ["Apache License Version 2.0"]
|
8
8
|
gem.summary = %q{Redis(zset/set/list/string/publish) output plugin for Fluentd}
|
9
9
|
gem.description = %q{Redis(zset/set/list/string/publish) output plugin for Fluentd...}
|
10
|
-
gem.homepage = "https://github.com/
|
10
|
+
gem.homepage = "https://github.com/dominodatalab/fluent-plugin-redis-store"
|
11
11
|
|
12
12
|
gem.files = `git ls-files`.split($\)
|
13
13
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
@@ -210,7 +210,7 @@ class RedisStoreOutputTest < Test::Unit::TestCase
|
|
210
210
|
assert_equal "george", $key
|
211
211
|
assert_equal message.to_json, $message
|
212
212
|
end
|
213
|
-
|
213
|
+
|
214
214
|
def test_json_with_malformed_utf8
|
215
215
|
config = %[
|
216
216
|
format_type json
|
@@ -221,16 +221,14 @@ class RedisStoreOutputTest < Test::Unit::TestCase
|
|
221
221
|
message = {
|
222
222
|
'user' => 'george',
|
223
223
|
'data' => ([0x80, 0x80].map {|x| x.chr}.join).force_encoding('UTF-8')
|
224
|
-
|
225
224
|
}
|
226
225
|
$ttl = nil
|
227
226
|
d.run(default_tag: 'test') do
|
228
227
|
d.feed(get_time, message)
|
229
228
|
end
|
230
|
-
|
231
229
|
assert_equal message, Yajl.load($message, :check_utf8 => false)
|
232
230
|
end
|
233
|
-
|
231
|
+
|
234
232
|
def test_msgpack
|
235
233
|
config = %[
|
236
234
|
format_type msgpack
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fluent-plugin-ddl-redis-store
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- moaikids
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2024-11-
|
12
|
+
date: 2024-11-21 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rake
|
@@ -74,7 +74,7 @@ dependencies:
|
|
74
74
|
- !ruby/object:Gem::Version
|
75
75
|
version: '0'
|
76
76
|
description: Redis(zset/set/list/string/publish) output plugin for Fluentd...
|
77
|
-
email:
|
77
|
+
email: builds@dominodatalab.com
|
78
78
|
executables: []
|
79
79
|
extensions: []
|
80
80
|
extra_rdoc_files: []
|
@@ -88,7 +88,7 @@ files:
|
|
88
88
|
- lib/fluent/plugin/out_redis_store.rb
|
89
89
|
- test/helpers.rb
|
90
90
|
- test/plugin/test_out_redis_publish.rb
|
91
|
-
homepage: https://github.com/
|
91
|
+
homepage: https://github.com/dominodatalab/fluent-plugin-redis-store
|
92
92
|
licenses:
|
93
93
|
- Apache License Version 2.0
|
94
94
|
metadata: {}
|