yggdrasil-engine 0.0.5.beta.12-x86_64-darwin → 0.0.5.beta.13-x86_64-darwin

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: 797da92e784e46aa16a1e4630523841d7e6731ac244afb3532e0ec99f1983242
4
- data.tar.gz: 268789f2db53b00941b881a75f40307b7647b8801e96b78ab3fbe53cec9bfe0c
3
+ metadata.gz: c0972b7e2207c03e9d3aa276cf19f1977fa82739928f1222e6f98313cb4e48f7
4
+ data.tar.gz: 51dfe095ce6f3f222dbe34e55bb349817aac37b1017abb0f8b5a549a73737d8b
5
5
  SHA512:
6
- metadata.gz: 0f437c717a7468c0eb5fd4fa923f8a0f20602a6aba8ce81e547b4624ed284ea231bd1fa18d099cb03b004f19dd5402784f0d65ffe8144d40cf1b0d8681dc2758
7
- data.tar.gz: 0c658e46d91cd57744b82b82ed5f3174efb32ced0bb93f544c52eae34e586dd04542ae41072eef7acc58e1e854cf8d6cd98af5b295dd30a182ad50fa49a5a45a
6
+ metadata.gz: 52507a88787a38322ac128364f58aa166dee52c8acfa73adc880e7c9e3d3740da41595d031988a7b1c0717f48b5d649b6fb34c33735aa9736f1734f75b843cd3
7
+ data.tar.gz: 5ade2220759ca6cd0439df0162eef6013e7e64d35e956cdce24ec96a7a1ff1399fa4a72113fb6dbc12717f9d51a1d8059f431a7f03cdca02ad69cab544c35d79
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)
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.13
5
5
  platform: x86_64-darwin
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.dylib
35
+ - lib/libyggdrasilffi_x86_64.dylib
36
36
  - lib/yggdrasil_engine.rb
37
37
  - spec/custom_strategy_spec.rb
38
38
  - spec/yggdrasil_engine_spec.rb
Binary file