splitclient-rb 7.1.4.pre.rc1-java → 7.1.4.pre.rc6-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: df270febc7f8d6500327a6cd74bd296a18f7b5b6
4
- data.tar.gz: 84a0677bc33dd0e2da328574f3a19eb69e037b57
3
+ metadata.gz: d365e1a7f73c3ad50c7965224920f7ba15ea3982
4
+ data.tar.gz: 356c8e60c98b3c4bf8ae184f1f3c172a2894ccc6
5
5
  SHA512:
6
- metadata.gz: a845b33d67d12111ab3532235782f17711e277c758608d424544200f6e18e227406079b026bfc8f69c68237e4d7c57dd291f41669baf8f9e1c0e75e7318ade08
7
- data.tar.gz: 7e917de2d2abc6b7ee2650f346bea615efdf8d27bb170ef2c596227502c54647993843faeea31b1cf0682f2a6da11d873c131897f5ede77050fcc4c9e0234bba
6
+ metadata.gz: 5e39e3849f1f26f0536d2a9881a99699a2a7eccfea5eb8ec992ba69d4cf8c4ff792cf314a11d73e9dbeff484b1dc06070cf0ad275e20bda3360533b58597e16d
7
+ data.tar.gz: c335c57bd6422abb164732536cc08bfedd6e67f341f988a35b083ace2ad3e6826d21353e4b5b1202555f1b8642275f9c7d5e40529c0e6e7b68fc9c87ed90399a
@@ -105,7 +105,7 @@ require 'splitclient-rb/sse/notification_processor'
105
105
  require 'splitclient-rb/sse/sse_handler'
106
106
 
107
107
  # C extension
108
- #require 'murmurhash/murmurhash_mri'
108
+ require 'murmurhash/murmurhash_mri'
109
109
 
110
110
  module SplitIoClient
111
111
  def self.root
@@ -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?(key)
145
+ @redis.exists(key)
146
146
  end
147
147
 
148
148
  def delete(key)
@@ -1,4 +1,6 @@
1
- require 'digest/murmurhash'
1
+ unless defined?(JRUBY_VERSION)
2
+ require 'digest/murmurhash'
3
+ end
2
4
 
3
5
  module SplitIoClient
4
6
  # Misc class in charge of providing hash functions and
@@ -1,4 +1,6 @@
1
- require 'digest/murmurhash'
1
+ unless defined?(JRUBY_VERSION)
2
+ require 'digest/murmurhash'
3
+ end
2
4
 
3
5
  module SplitIoClient
4
6
  module Engine
@@ -1,3 +1,3 @@
1
1
  module SplitIoClient
2
- VERSION = '7.1.4.pre.rc1'
2
+ VERSION = '7.1.4.pre.rc6'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: splitclient-rb
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.1.4.pre.rc1
4
+ version: 7.1.4.pre.rc6
5
5
  platform: java
6
6
  authors:
7
7
  - Split Software