flipt_client 0.6.0 → 0.7.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7de6ff1869c9845250a2eaafa0e9b85d9135eabac78b61ddbbe682a8843a2f28
4
- data.tar.gz: 2b38cb9f4b60554cdadf1da74904f050f5594f13ef95b69e44ae40b7ceeb3b78
3
+ metadata.gz: 3e6d2ba2cc57cac3446b5df105f61a2f1e15ca6bcbbcdfa7306c821f2c562fc5
4
+ data.tar.gz: 84ec8fa11e6910cbfc5fe50394806190c279be2f32587d7105d16687192fac93
5
5
  SHA512:
6
- metadata.gz: 79fbec0e50c4139231536225a8faa53c44e13d87957e624e0078ef897abe574986e2aa8693dfcee5d6ee9920f095b058c250a6d713ab5c78bf27b0314cfff8fe
7
- data.tar.gz: 4800d4efa7d12f6f439445f454ce9cb1b3829ec5d470c8624655b9e11985413b792309daf7ad5112cf4948ac05678cb9d3dbf956d0eae5b44bbd717eaaa3fa36
6
+ metadata.gz: 6b740a30f15d192a44d4ecf59bd682bdf6097b3260ec5d223c20f3cee4d4a3d5f6e812f705a5f53b03d0d9f9d872e48d520f7d4738f10ec23bb3398a534d641d
7
+ data.tar.gz: af4e1d93cc2b070488a9f5120f3cfe4ef4bff8bfdac29261b3e4b9ad84767efc9edcb6c42afeafe30049cbd0b971f1a82d912cc1e8ba9fd6b50a53c5c877707f
data/README.md CHANGED
@@ -10,7 +10,16 @@ The `flipt-client-ruby` library contains the Ruby source code for the Flipt [cli
10
10
  gem install flipt_client
11
11
  ```
12
12
 
13
- ## Using System Libffi
13
+ ## Supported Architectures
14
+
15
+ This SDK currently supports the following OSes/architectures:
16
+
17
+ - Linux x86_64
18
+ - Linux arm64
19
+ - MacOS x86_64
20
+ - MacOS arm64
21
+
22
+ ### Using System Libffi
14
23
 
15
24
  If you are experiencing segfaults when using this gem, you may need to configure `ffi` to use the system libffi instead of the bundled one.
16
25
 
@@ -0,0 +1 @@
1
+ /Users/runner/work/flipt-client-sdks/flipt-client-sdks/target/x86_64-apple-darwin/release/libfliptengine.rlib: /Users/runner/work/flipt-client-sdks/flipt-client-sdks/flipt-engine-ffi/src/evaluator/mod.rs /Users/runner/work/flipt-client-sdks/flipt-client-sdks/flipt-engine-ffi/src/lib.rs /Users/runner/work/flipt-client-sdks/flipt-client-sdks/flipt-engine-ffi/src/parser/http.rs /Users/runner/work/flipt-client-sdks/flipt-client-sdks/flipt-engine-ffi/src/parser/mod.rs /Users/runner/work/flipt-client-sdks/flipt-client-sdks/flipt-evaluation/src/error/mod.rs /Users/runner/work/flipt-client-sdks/flipt-client-sdks/flipt-evaluation/src/lib.rs /Users/runner/work/flipt-client-sdks/flipt-client-sdks/flipt-evaluation/src/models/common.rs /Users/runner/work/flipt-client-sdks/flipt-client-sdks/flipt-evaluation/src/models/flipt.rs /Users/runner/work/flipt-client-sdks/flipt-client-sdks/flipt-evaluation/src/models/mod.rs /Users/runner/work/flipt-client-sdks/flipt-client-sdks/flipt-evaluation/src/models/source.rs /Users/runner/work/flipt-client-sdks/flipt-client-sdks/flipt-evaluation/src/parser/mod.rs /Users/runner/work/flipt-client-sdks/flipt-client-sdks/flipt-evaluation/src/store/mod.rs
Binary file
Binary file
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Flipt
4
- VERSION = '0.6.0'
4
+ VERSION = '0.7.0'
5
5
  end
data/lib/flipt_client.rb CHANGED
@@ -18,6 +18,8 @@ module Flipt
18
18
  case RbConfig::CONFIG['arch']
19
19
  when /arm64-darwin/
20
20
  "ext/darwin_arm64/#{FLIPTENGINE}.dylib"
21
+ when /x86_64-darwin/
22
+ "ext/darwin_x86_64/#{FLIPTENGINE}.dylib"
21
23
  when /arm64-linux|aarch64-linux/
22
24
  "ext/linux_arm64/#{FLIPTENGINE}.so"
23
25
  when /x86_64-linux/
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flipt_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Flipt Devs
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-04-16 00:00:00.000000000 Z
11
+ date: 2024-04-23 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Flipt Client Evaluation SDK
14
14
  email:
@@ -22,6 +22,9 @@ files:
22
22
  - lib/ext/darwin_arm64/libfliptengine.d
23
23
  - lib/ext/darwin_arm64/libfliptengine.dylib
24
24
  - lib/ext/darwin_arm64/libfliptengine.rlib
25
+ - lib/ext/darwin_x86_64/libfliptengine.d
26
+ - lib/ext/darwin_x86_64/libfliptengine.dylib
27
+ - lib/ext/darwin_x86_64/libfliptengine.rlib
25
28
  - lib/ext/flipt_engine.h
26
29
  - lib/ext/linux_arm64/libfliptengine.d
27
30
  - lib/ext/linux_arm64/libfliptengine.rlib