yggdrasil-engine 0.0.7-universal-java-21 → 0.0.8.beta.1-universal-java-21

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: 0ddc145a98e340966e82b8e8582946a14a12bf618a131b4284c1ed91e92bee36
4
- data.tar.gz: 0b8a3f87d5b399d483628e17e51873a05d8225e2d0f410bf30ed4118829bcd0d
3
+ metadata.gz: 57e0fe0efe9a1d6f2dc1102379b7ea78717de76b7583c9ace423944f2da67ec2
4
+ data.tar.gz: bcc4959d7f7cadf265c2526a06aed767699e7238aa9f7b358a07f97df32dfb06
5
5
  SHA512:
6
- metadata.gz: 5017eea5d8fd230af1be62717d2b5beadf177aea1980a68c163e84c29a82c27b5b9e5cf3315e6b3b12b05f541ba7f57b4e53e9f2f82505ced7ddc0d6fa9e8b80
7
- data.tar.gz: d83b936ae64bd9da2e1f9cfec146df5de25c8a9c17d55ee9c6d578210d9e9293f190e8bd44ef16fd6fa8307bb80a7ac5c6299388ab6a0565e1d18fd76b7fe869
6
+ metadata.gz: 4e38e7bda71788ef2c115c5e9404afc71f5bf85462a29daffd5c4e77f4d2000f8c7409c69a56eb9dfda38371bdc9156410cd4c4fbb8aa2d2139d342d06238165
7
+ data.tar.gz: d48a1f754a211c42cd95c28c9c66bb51836393687793e87df13be44d6fb0822fa41ee4662fc789ede294fdeada9876758d5b95566412c6fc02ad8d5453c704a4
@@ -0,0 +1 @@
1
+ Not Found
@@ -0,0 +1 @@
1
+ Not Found
Binary file
Binary file
@@ -0,0 +1 @@
1
+ Not Found
Binary file
@@ -10,29 +10,34 @@ def platform_specific_lib
10
10
  os = RbConfig::CONFIG['host_os']
11
11
  cpu = RbConfig::CONFIG['host_cpu']
12
12
 
13
- extension = case os
14
- when /darwin|mac os/
15
- 'dylib'
16
- when /linux/
17
- 'so'
18
- when /mswin|msys|mingw|cygwin|bccwin|wince|emc/
19
- 'dll'
20
- else
21
- raise "unsupported platform #{os}"
22
- end
13
+ extension, prefix = case os
14
+ when /darwin|mac os/
15
+ ['dylib', 'lib']
16
+ when /linux/
17
+ ['so', 'lib']
18
+ when /mswin|msys|mingw|cygwin|bccwin|wince|emc/
19
+ ['dll', '']
20
+ else
21
+ raise "unsupported platform #{os}"
22
+ end
23
23
 
24
24
  arch_suffix = case cpu
25
- when /x86_64/
26
- 'x86_64'
27
- when /arm/
28
- 'arm64'
29
- when /aarch64/
30
- 'aarch64'
31
- else
32
- raise "unsupported architecture #{cpu}"
33
- end
34
-
35
- "libyggdrasilffi_#{arch_suffix}.#{extension}"
25
+ when /x86_64/
26
+ 'x86_64'
27
+ when /arm|aarch64/
28
+ 'arm64'
29
+ else
30
+ raise "unsupported architecture #{cpu}"
31
+ end
32
+
33
+ lib_type_suffix = if os =~ /linux/
34
+ musl = system("ldd /bin/sh | grep -q musl") # Check if musl is in use
35
+ musl ? "-musl" : ""
36
+ else
37
+ ""
38
+ end
39
+
40
+ "#{prefix}yggdrasilffi_#{arch_suffix}#{lib_type_suffix}.#{extension}"
36
41
  end
37
42
 
38
43
  def to_variant(raw_variant)
@@ -61,6 +66,8 @@ class YggdrasilEngine
61
66
  attach_function :count_toggle, %i[pointer string bool], :void
62
67
  attach_function :count_variant, %i[pointer string string], :void
63
68
 
69
+ attach_function :list_known_toggles, [:pointer], :pointer
70
+
64
71
  def initialize
65
72
  @engine = YggdrasilEngine.new_engine
66
73
  @custom_strategy_handler = CustomStrategyHandler.new
@@ -125,6 +132,13 @@ class YggdrasilEngine
125
132
  metrics[:value]
126
133
  end
127
134
 
135
+ def list_known_toggles
136
+ response_ptr = YggdrasilEngine.list_known_toggles(@engine)
137
+ response_json = response_ptr.read_string
138
+ YggdrasilEngine.free_response(response_ptr)
139
+ JSON.parse(response_json, symbolize_names: true)
140
+ end
141
+
128
142
  def register_custom_strategies(strategies)
129
143
  @custom_strategy_handler.register_custom_strategies(strategies)
130
144
  end
@@ -0,0 +1 @@
1
+ Not Found
@@ -0,0 +1 @@
1
+ Not Found
@@ -93,6 +93,16 @@ RSpec.describe YggdrasilEngine do
93
93
 
94
94
  expect(metric[:variants][:disabled]).to eq(1)
95
95
  end
96
+
97
+ it 'should list all the features that were loaded' do
98
+ suite_path = File.join('../client-specification/specifications', '01-simple-examples.json')
99
+ suite_data = JSON.parse(File.read(suite_path))
100
+
101
+ yggdrasil_engine.take_state(suite_data['state'].to_json)
102
+
103
+ toggles = yggdrasil_engine.list_known_toggles()
104
+ expect(toggles.length).to eq(3)
105
+ end
96
106
  end
97
107
  end
98
108
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yggdrasil-engine
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.7
4
+ version: 0.0.8.beta.1
5
5
  platform: universal-java-21
6
6
  authors:
7
7
  - Unleash
@@ -32,19 +32,22 @@ extra_rdoc_files: []
32
32
  files:
33
33
  - README.md
34
34
  - lib/custom_strategy.rb
35
- - lib/libyggdrasilffi_aarch64.so
35
+ - lib/libyggdrasilffi_arm64-musl.so
36
+ - lib/libyggdrasilffi_arm64.dll
36
37
  - lib/libyggdrasilffi_arm64.dylib
37
38
  - lib/libyggdrasilffi_arm64.so
38
- - lib/libyggdrasilffi_x86_64.dll
39
- - lib/libyggdrasilffi_x86_64.dylib
39
+ - lib/libyggdrasilffi_x86_64-linux-musl.so
40
40
  - lib/libyggdrasilffi_x86_64.so
41
41
  - lib/yggdrasil_engine.rb
42
+ - lib/yggdrasilffi_x86_64.dll
43
+ - lib/yggdrasilffi_x86_64.dylib
42
44
  - spec/custom_strategy_spec.rb
43
45
  - spec/yggdrasil_engine_spec.rb
44
46
  homepage: http://github.com/username/my_gem
45
47
  licenses:
46
48
  - MIT
47
- metadata: {}
49
+ metadata:
50
+ yggdrasil_core_version: 0.14.0
48
51
  post_install_message:
49
52
  rdoc_options: []
50
53
  require_paths:
@@ -56,9 +59,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
56
59
  version: '0'
57
60
  required_rubygems_version: !ruby/object:Gem::Requirement
58
61
  requirements:
59
- - - ">="
62
+ - - ">"
60
63
  - !ruby/object:Gem::Version
61
- version: '0'
64
+ version: 1.3.1
62
65
  requirements: []
63
66
  rubygems_version: 3.3.26
64
67
  signing_key:
Binary file
Binary file
Binary file