valkey-glide-rb 0.9.4.pre.rc2 → 0.9.5
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/.rubocop.yml +9 -0
- data/lib/valkey/native/aarch64-apple-darwin/libglide_ffi.dylib +0 -0
- data/lib/valkey/native/aarch64-unknown-linux-gnu/libglide_ffi.so +0 -0
- data/lib/valkey/native/aarch64-unknown-linux-musl/libglide_ffi.so +0 -0
- data/lib/valkey/native/x86_64-unknown-linux-gnu/libglide_ffi.so +0 -0
- data/lib/valkey/native/x86_64-unknown-linux-musl/libglide_ffi.so +0 -0
- data/lib/valkey/version.rb +1 -1
- data/lib/valkey.rb +3 -2
- 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: 81ff9bce97a9bd2e790689d82f4f7a3e2b43217e06691d147c5c7dd7005e9362
|
|
4
|
+
data.tar.gz: e9e2a2d02a7ad14fa6e78da1cf259537f671868c8cad1486df3bde1e69aea2fe
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3cabf9e3463367cb10bdfe4962ab18ea47e14d41f89e7c94569f783582207d99533b602ebf8b680b0aba14039851ebe415854eebb36687d0c814ce8a21600db1
|
|
7
|
+
data.tar.gz: 99606f6199249c6c370e7b8599bc4b4983069498d2725b7e1aabbe82ea039625f4c2c470859b5d3d0b24fbc648c24d660dba066fa19320c4d3b711700aedabd2
|
data/.rubocop.yml
CHANGED
|
@@ -68,3 +68,12 @@ Metrics/ModuleLength:
|
|
|
68
68
|
- 'lib/valkey/bindings.rb'
|
|
69
69
|
- 'lib/valkey/opentelemetry.rb'
|
|
70
70
|
- 'test/**/*.rb'
|
|
71
|
+
|
|
72
|
+
# This gem is backported to run on Ruby 2.7 (see required_ruby_version in
|
|
73
|
+
# valkey.gemspec), while TargetRubyVersion stays at 3.0 for general style.
|
|
74
|
+
# The two cops below assume the gem's minimum Ruby is 3.0, which isn't true here.
|
|
75
|
+
Style/HashExcept:
|
|
76
|
+
Enabled: false # Hash#except is Ruby 3.0+; we use Hash#reject to stay 2.7-compatible
|
|
77
|
+
|
|
78
|
+
Gemspec/RequiredRubyVersion:
|
|
79
|
+
Enabled: false # required_ruby_version (>= 2.6) is intentionally below TargetRubyVersion
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
data/lib/valkey/version.rb
CHANGED
data/lib/valkey.rb
CHANGED
|
@@ -45,8 +45,9 @@ class Valkey
|
|
|
45
45
|
# Parse URL if provided
|
|
46
46
|
if options[:url]
|
|
47
47
|
url_options = Utils.parse_redis_url(options[:url])
|
|
48
|
-
# Merge URL options, but explicit options take precedence
|
|
49
|
-
|
|
48
|
+
# Merge URL options, but explicit options take precedence.
|
|
49
|
+
# `reject` (not Hash#except, which is Ruby 3.0+) keeps this Ruby 2.7 compatible.
|
|
50
|
+
options = url_options.merge(options.reject { |k, _| k == :url })
|
|
50
51
|
end
|
|
51
52
|
|
|
52
53
|
# Extract connection parameters
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: valkey-glide-rb
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.9.
|
|
4
|
+
version: 0.9.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Valkey GLIDE Maintainers
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-08-
|
|
11
|
+
date: 2026-08-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: ffi
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 1.
|
|
19
|
+
version: '1.16'
|
|
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.
|
|
26
|
+
version: '1.16'
|
|
27
27
|
description: A Ruby client library for Valkey
|
|
28
28
|
email:
|
|
29
29
|
executables: []
|
|
@@ -101,7 +101,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
101
101
|
requirements:
|
|
102
102
|
- - ">="
|
|
103
103
|
- !ruby/object:Gem::Version
|
|
104
|
-
version:
|
|
104
|
+
version: 2.6.0
|
|
105
105
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
106
106
|
requirements:
|
|
107
107
|
- - ">="
|