yggdrasil-engine 0.0.8.beta.2-x64-mingw32 → 0.0.9-x64-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/yggdrasil_engine.rb +21 -21
- data/lib/yggdrasilffi_x86_64.dll +0 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a2ff13812df9dbb0858f77716e75b783de3cb67f69282421ab40e87dcfb1eba6
|
4
|
+
data.tar.gz: f3a346408ee2e5b112fa4088f6b0e48712c244243c61cbb1eb3c50c6204f3fb1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b9caf29f958ae567f87c667232b0682839da487246f6bb4722ab56276131a0e4e31da424638d16db14e68b2cdec43b6932ab327aadc19c215152281e38a40daa
|
7
|
+
data.tar.gz: 11186800c6790de567c06ef2ca5506358d63102d742483796827eae2d9fca7ae90bbb8da93ff8498281e13c24a156bf0ddff87c5f55d30f8178ac071f8b96f9f
|
data/lib/yggdrasil_engine.rb
CHANGED
@@ -11,31 +11,31 @@ def platform_specific_lib
|
|
11
11
|
cpu = RbConfig::CONFIG['host_cpu']
|
12
12
|
|
13
13
|
extension, prefix = case os
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
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
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
25
|
+
when /x86_64/
|
26
|
+
'x86_64'
|
27
|
+
when /arm|aarch64/
|
28
|
+
'arm64'
|
29
|
+
else
|
30
|
+
raise "unsupported architecture #{cpu}"
|
31
|
+
end
|
32
32
|
|
33
33
|
lib_type_suffix = if os =~ /linux/
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
34
|
+
musl = system("ldd /bin/sh | grep -q musl")
|
35
|
+
musl ? "-musl" : ""
|
36
|
+
else
|
37
|
+
""
|
38
|
+
end
|
39
39
|
|
40
40
|
"#{prefix}yggdrasilffi_#{arch_suffix}#{lib_type_suffix}.#{extension}"
|
41
41
|
end
|
data/lib/yggdrasilffi_x86_64.dll
CHANGED
Binary file
|
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.
|
4
|
+
version: 0.0.9
|
5
5
|
platform: x64-mingw32
|
6
6
|
authors:
|
7
7
|
- Unleash
|
@@ -52,9 +52,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
52
52
|
version: '0'
|
53
53
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
54
54
|
requirements:
|
55
|
-
- - "
|
55
|
+
- - ">="
|
56
56
|
- !ruby/object:Gem::Version
|
57
|
-
version:
|
57
|
+
version: '0'
|
58
58
|
requirements: []
|
59
59
|
rubygems_version: 3.3.5
|
60
60
|
signing_key:
|