splitclient-rb 7.1.4.pre.rc2-java → 7.1.4.pre.rc3-java
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 44698d45c21a3a79f58c7af6f640486c276967f0
|
4
|
+
data.tar.gz: 1dd25d70d076f9651e79eb139a9d96fe7df85063
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 134683e7f2dad59fe226b23589ed6bf42f10e5e0bc6519a182e96c5028352c99466ba9c02488b12fa16221111d74b17eee10432a6c2bd5ea4860ea55ffc37470
|
7
|
+
data.tar.gz: 6a93079c8aa707a4c9c0548048c122b93311a9822240bd3ffdb4b47a708640ad95d75d1e4ef2ebf51c82aecc3b8d86dc8c91b04e6c9d9877ef95f24aa26e939c
|
@@ -14,7 +14,7 @@ module SplitIoClient
|
|
14
14
|
def initialize(redis_url)
|
15
15
|
connection = redis_url.is_a?(Hash) ? redis_url : { url: redis_url }
|
16
16
|
|
17
|
-
@redis = Redis.new(connection)
|
17
|
+
@redis = Redis.new(connection)
|
18
18
|
end
|
19
19
|
|
20
20
|
# Map
|
@@ -142,7 +142,7 @@ module SplitIoClient
|
|
142
142
|
|
143
143
|
# General
|
144
144
|
def exists?(key)
|
145
|
-
@redis.exists
|
145
|
+
@redis.exists(key)
|
146
146
|
end
|
147
147
|
|
148
148
|
def delete(key)
|