mongory 0.7.2-arm64-darwin-23 → 0.7.3-arm64-darwin-23

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c53de238aac3f86c697d313c87356c70ccfb6e1c3e4aaef3889bcb73bddf53f2
4
- data.tar.gz: 07f9a5c2f2898b7c115dfe5dac863ca0e129ebfea04785daed8c90b20d6e1e31
3
+ metadata.gz: ce1163692c759f9fd7ed220e3c69ffafee38d8028df3e7b6019edf349638ccc0
4
+ data.tar.gz: b2f96f36354e6f95754beb7462f9ed705039963ae496f26663fcd10f829df2dc
5
5
  SHA512:
6
- metadata.gz: d11876f0bb1ff04da52da1ea1cd57d651b568c8747b43fc360e1de54b1006a197cfb4ee86e5453fea0180cbb5880f6271ca17d6f75eb9888a3c7ee8c894072da
7
- data.tar.gz: 10227eecf9428359b0ee94e21df1de5dff5b40c00aa4f9264bbb38aed49ba415f42f60dd1f0dd7f59bd2667c4cf7f116b4ef882762899126f783cbe9f932fb94
6
+ metadata.gz: 147180dd7bd1ca074608246ca150951953f056768cf60bcd90b591c2d3ef94298be5772ea1930e414e7f3e49357089de27806a87dcf1995661b616007f18917c
7
+ data.tar.gz: 52d46b3761523a823fe5c0fbcec739c01fbb78f86f2fbffac442e942e389c62ccf69d64c9ac70ff06e5948b58c7f72c7ea3c09d820e5bffb850e6e7be440d3e8
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Mongory
4
- VERSION = '0.7.2'
4
+ VERSION = '0.7.3'
5
5
  end
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
- spec.platform = Gem::Platform::CURRENT
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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mongory
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.2
4
+ version: 0.7.3
5
5
  platform: arm64-darwin-23
6
6
  authors:
7
7
  - koten0224