eppo-server-sdk 3.2.4-aarch64-linux-musl → 3.2.8-aarch64-linux-musl
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +3 -2
- data/lib/eppo_client/3.0/eppo_client.so +0 -0
- data/lib/eppo_client/3.1/eppo_client.so +0 -0
- data/lib/eppo_client/3.2/eppo_client.so +0 -0
- data/lib/eppo_client/3.3/eppo_client.so +0 -0
- data/lib/eppo_client/client.rb +9 -2
- data/lib/eppo_client/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ac29b646a9fd7865a8ea9abf949f54448d5e9c3d820c125d24662264a78de6eb
|
4
|
+
data.tar.gz: 8f1e2dfcbf03e6ad9e5eb3d174f7d3c180f6ea91d23da9a7111af63b17963cdf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cf0ce26c748ce6d18730abd21cc07cf6760c85a580848a10a4d7a5125d29846790255ab73d441bdc2d3dc06a99b8f45c39c06f428e72b84ab6ae1c27bd94da72
|
7
|
+
data.tar.gz: 529b2d9a66afb958476787a32d0d01804e3957a448f787b3da2655fc353f45fb232e70280515d776a3afd72b92d8333057c1e18527995c0fb10364d5b8a1cbf4
|
data/README.md
CHANGED
@@ -23,5 +23,6 @@ Make sure you remove the override before updating `Cargo.lock`. Otherwise, the l
|
|
23
23
|
|
24
24
|
## Releasing
|
25
25
|
|
26
|
-
* Bump versions in `ruby-sdk/lib/eppo_client/version.rb` and `ruby-sdk/ext/eppo_client/Cargo.toml
|
27
|
-
* Run `cargo update --workspace --verbose` to update `Cargo.lock`
|
26
|
+
* Bump versions in `ruby-sdk/lib/eppo_client/version.rb` and `ruby-sdk/ext/eppo_client/Cargo.toml`
|
27
|
+
* Run `cargo update --workspace --verbose` to update `Cargo.lock`
|
28
|
+
* Run `bundle` to update `Gemfile.lock`
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/lib/eppo_client/client.rb
CHANGED
@@ -4,7 +4,14 @@ require "singleton"
|
|
4
4
|
require "logger"
|
5
5
|
|
6
6
|
require_relative "config"
|
7
|
-
|
7
|
+
|
8
|
+
# Tries to require the extension for the current Ruby version first
|
9
|
+
begin
|
10
|
+
RUBY_VERSION =~ /(\d+\.\d+)/
|
11
|
+
require_relative "#{Regexp.last_match(1)}/eppo_client"
|
12
|
+
rescue LoadError
|
13
|
+
require_relative "eppo_client"
|
14
|
+
end
|
8
15
|
|
9
16
|
module EppoClient
|
10
17
|
# The main client singleton
|
@@ -15,7 +22,7 @@ module EppoClient
|
|
15
22
|
def init(config)
|
16
23
|
config.validate
|
17
24
|
|
18
|
-
if !@core.nil?
|
25
|
+
if !@core.nil?
|
19
26
|
STDERR.puts "Eppo Warning: multiple initialization of the client"
|
20
27
|
@core.shutdown
|
21
28
|
end
|
data/lib/eppo_client/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: eppo-server-sdk
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.2.
|
4
|
+
version: 3.2.8
|
5
5
|
platform: aarch64-linux-musl
|
6
6
|
authors:
|
7
7
|
- Eppo
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-10-
|
11
|
+
date: 2024-10-31 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description:
|
14
14
|
email:
|