fastlane-plugin-ipa_info 0.3.2 → 0.3.3
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
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2e8c4cf3870e3c816e66cc8eef9b6a405d38e83f
|
|
4
|
+
data.tar.gz: f35b16472ecb9e83f296dd08b2be7591c8eca484
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 614c7b710bfc52d9afc7446d576fcb71cbaae731554d3fd9c3790464d46d120939cd5d877c4bccd0c986ac63bfeb233792dae29817c7bac924813b13340c6385
|
|
7
|
+
data.tar.gz: b724c473358c6d5f8d8881fcb23fce07ecfb426e2c09511d774cb7dd184a255c0b1cf17bd93d3520deffe7e69b921736ae091123f389f96b574a99ec63c508bc
|
|
@@ -59,8 +59,19 @@ module Fastlane
|
|
|
59
59
|
def self.macos_build_to_macos_version(build:)
|
|
60
60
|
# reference https://support.apple.com/ja-jp/HT201260
|
|
61
61
|
case build
|
|
62
|
+
#macOS Mojave
|
|
63
|
+
when "18E226" then
|
|
64
|
+
"10.14.4"
|
|
65
|
+
when "18D42", "18D109" then
|
|
66
|
+
"10.14.3"
|
|
67
|
+
when "18C54" then
|
|
68
|
+
"10.14.2"
|
|
69
|
+
when "18B75" then
|
|
70
|
+
"10.14.1"
|
|
71
|
+
when "18A391" then
|
|
72
|
+
"10.14"
|
|
62
73
|
# macOS High Sierra
|
|
63
|
-
when "17G65" then
|
|
74
|
+
when "17G65", "17G6029" then
|
|
64
75
|
"10.13.6"
|
|
65
76
|
when "17F77" then
|
|
66
77
|
"10.13.5"
|
|
@@ -98,6 +109,8 @@ module Fastlane
|
|
|
98
109
|
minor_version = version.split(".")[1].to_i
|
|
99
110
|
# reference https://support.apple.com/ja-jp/HT201260
|
|
100
111
|
case minor_version
|
|
112
|
+
when 14
|
|
113
|
+
"macOS Mojave"
|
|
101
114
|
when 13
|
|
102
115
|
"macOS High Sierra"
|
|
103
116
|
when 12
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-ipa_info
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- tarappo
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2019-04-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: ipa_analyzer
|
|
@@ -182,7 +182,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
182
182
|
version: '0'
|
|
183
183
|
requirements: []
|
|
184
184
|
rubyforge_project:
|
|
185
|
-
rubygems_version: 2.
|
|
185
|
+
rubygems_version: 2.6.8
|
|
186
186
|
signing_key:
|
|
187
187
|
specification_version: 4
|
|
188
188
|
summary: show ipa info
|