mongory 0.7.2-x86_64-linux → 0.7.3-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.
Potentially problematic release.
This version of mongory might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/lib/mongory/version.rb +1 -1
- data/lib/mongory_ext.so +0 -0
- data/mongory.gemspec +13 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5517914484077150ed03bd913d2212d34a0ee65ae5985138e68117829575a1dd
|
4
|
+
data.tar.gz: 28f124bab0f0c4b15aa9d3ff032513d331a19f250ca7df87ea7008c6bb347802
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 57c74bbfd1483bf94ebe2d6451fcdac7be86b5f65a77259a170f8befde16f6f40a6ac37a11038339e9ee8d0ee2704be28b1c3076e69462c7b57b7f86bee77038
|
7
|
+
data.tar.gz: d1383e3b08414a863a39df783764797c543616655ef6e79a103cc5f54ad889223f27710ba16c9bdfda58fea04161209b725a6bfb9d75ba1c3f2a6cf4f4cde6ce
|
data/lib/mongory/version.rb
CHANGED
data/lib/mongory_ext.so
CHANGED
Binary file
|
data/mongory.gemspec
CHANGED
@@ -45,6 +45,18 @@ Gem::Specification.new do |spec|
|
|
45
45
|
|
46
46
|
# When building a native/platform gem, set platform to current
|
47
47
|
if ENV['NATIVE_BUILD'] == '1'
|
48
|
-
|
48
|
+
plat = ENV['RCD_PLATFORM'].to_s
|
49
|
+
spec.platform =
|
50
|
+
case plat
|
51
|
+
when /x86_64-linux-musl/ then Gem::Platform.new('x86_64-linux-musl')
|
52
|
+
when /aarch64-linux-musl/ then Gem::Platform.new('aarch64-linux-musl')
|
53
|
+
when /x86_64-linux/ then Gem::Platform.new('x86_64-linux')
|
54
|
+
when /aarch64-linux/ then Gem::Platform.new('aarch64-linux')
|
55
|
+
when /x64-mingw-ucrt/ then Gem::Platform.new('x64-mingw-ucrt')
|
56
|
+
when /x64-mingw32/ then Gem::Platform.new('x64-mingw32')
|
57
|
+
when /arm64-darwin/ then Gem::Platform.new('arm64-darwin')
|
58
|
+
when /x86_64-darwin/ then Gem::Platform.new('x86_64-darwin')
|
59
|
+
else Gem::Platform::CURRENT
|
60
|
+
end
|
49
61
|
end
|
50
62
|
end
|