run_loop 4.9.0 → 4.9.1
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 +4 -4
- data/lib/run_loop/lipo.rb +2 -2
- data/lib/run_loop/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 766b2161c52ca7f2452f35e51445cb4a68e2f9127f00abf65edc5f52bfeb3724
|
|
4
|
+
data.tar.gz: ed318b8c5812440238b32e65984e2def0580d7b16415e3b066792db3575bd133
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8692ac6a1c2b74a22097a972ba4cfa0b788cdd5d975ab9b73ba22bbfe296867f85cbcf01f56fa1c292d02d6c8a90a8e3ed183360ec466863b75401e2e9b3ea03
|
|
7
|
+
data.tar.gz: 2bba77ba5cdb7999581f0392bd990c812df1dd4aa8846c6e0e7956a1ab8d7e06de37627198a5fdae3c79df8731ee69efad5b0652bafe0df684da800077ad96bc
|
data/lib/run_loop/lipo.rb
CHANGED
|
@@ -73,8 +73,8 @@ module RunLoop
|
|
|
73
73
|
raise 'Ensuring compatible arches for physical devices is NYI'
|
|
74
74
|
else
|
|
75
75
|
arches = self.info
|
|
76
|
-
# An i386 binary will run on any simulator.
|
|
77
|
-
return true if arches.include?('i386')
|
|
76
|
+
# An i386 and arm64 binary will run on any simulator.
|
|
77
|
+
return true if arches.include?('i386') || arches.include?('arm64')
|
|
78
78
|
|
|
79
79
|
instruction_set = device.instruction_set
|
|
80
80
|
unless arches.include?(instruction_set)
|
data/lib/run_loop/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: run_loop
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.9.
|
|
4
|
+
version: 4.9.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Karl Krukow
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2023-02-
|
|
12
|
+
date: 2023-02-24 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: json
|