yggdrasil-engine 0.0.5.beta.12-x86_64-linux → 0.0.5.beta.14-x86_64-linux

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: 6406c31a05821c1a7d25ed7670f15bc39760eef1e065df5e4d6be113f9ff50e4
4
- data.tar.gz: f574aa296002e78378d32d0f6b977226a661973579d8ca5458325e59a08b8dbb
3
+ metadata.gz: 99ce88853cac0e23c9d339387ef3d980beff95ee1b1fb2c61bf5de07d34c82f5
4
+ data.tar.gz: f46d8fae7e4dea2bfa2b58d23fe3dd0836235ad74ffe63699b0eb86bfc1e46cb
5
5
  SHA512:
6
- metadata.gz: 0e459e323f1c48b5f81fa3ba79bda2943283b0435afc1ab664b4d8ccd5da1bcda16cebf6f636d35a75cfef6259e180505b1df30646716ad6acdd5afe45087c5a
7
- data.tar.gz: 37973461a655e4c83bafc73dc43c6ce6a99e9be4aab8f08a1887cbca28ce6a8f8955c00102086e633167dff15af2d408bdb2b5622c11b306a663b139ec16a0dc
6
+ metadata.gz: 626e7f0156e31ac56bdfc9bbab2878a9b4337a00673f9462651cc33f63dfd2c6cb76a0ec755097afd56003199a95ed3ea5bfa1a4395a460c3977aa49dacfdcf9
7
+ data.tar.gz: a294af1b582e688836126cce37b37d79ce943aedb942321047837bd6684e92a2d1b6e1a7161d61f10aeccb34997e22ab0b35dacadf215113703edd8347203942
Binary file
@@ -7,16 +7,30 @@ ERROR_RESPONSE = 'Error'.freeze
7
7
  OK_RESPONSE = 'Ok'.freeze
8
8
 
9
9
  def platform_specific_lib
10
- case RbConfig::CONFIG['host_os']
10
+ os = RbConfig::CONFIG['host_os']
11
+ cpu = RbConfig::CONFIG['host_cpu']
12
+
13
+ extension = case os
11
14
  when /darwin|mac os/
12
- 'libyggdrasilffi.dylib'
15
+ 'dylib'
13
16
  when /linux/
14
- 'libyggdrasilffi.so'
17
+ 'so'
15
18
  when /mswin|msys|mingw|cygwin|bccwin|wince|emc/
16
- 'libyggdrasilffi.dll'
19
+ 'dll'
17
20
  else
18
- raise "unsupported platform #{RbConfig::CONFIG['host_os']}"
21
+ raise "unsupported platform #{os}"
19
22
  end
23
+
24
+ arch_suffix = case cpu
25
+ when /x86_64/
26
+ 'x86_64'
27
+ when /arm|aarch64/
28
+ 'arm'
29
+ else
30
+ raise "unsupported architecture #{cpu}"
31
+ end
32
+
33
+ "libyggdrasilffi_#{arch_suffix}.#{extension}"
20
34
  end
21
35
 
22
36
  def to_variant(raw_variant)
@@ -24,6 +38,7 @@ def to_variant(raw_variant)
24
38
  {
25
39
  name: raw_variant[:name],
26
40
  enabled: raw_variant[:enabled],
41
+ feature_enabled: raw_variant[:featureEnabled],
27
42
  payload: payload,
28
43
  }
29
44
  end
@@ -131,6 +131,7 @@ RSpec.describe 'Client Specification' do
131
131
  expect(result[:name]).to eq(expected_result[:name])
132
132
  expect(result[:payload]).to eq(expected_result[:payload])
133
133
  expect(result[:enabled]).to eq(expected_result[:enabled])
134
+ expect(result[:feature_enabled]).to eq(expected_result[:feature_enabled])
134
135
  end
135
136
  end
136
137
  end
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.5.beta.12
4
+ version: 0.0.5.beta.14
5
5
  platform: x86_64-linux
6
6
  authors:
7
7
  - Unleash
@@ -32,7 +32,7 @@ extra_rdoc_files: []
32
32
  files:
33
33
  - README.md
34
34
  - lib/custom_strategy.rb
35
- - lib/libyggdrasilffi.so
35
+ - lib/libyggdrasilffi_x86_64.so
36
36
  - lib/yggdrasil_engine.rb
37
37
  - spec/custom_strategy_spec.rb
38
38
  - spec/yggdrasil_engine_spec.rb
Binary file