fastlane 2.63.0.beta.20171029010003 → 2.63.0.beta.20171030010003
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: 5e8840f8d00c284e974bc72ae7fca0e0b9eed69f
|
4
|
+
data.tar.gz: 93c981b040bca878d122fcaa277361d806386200
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 273df5762178185513a3c6bebb59a5e1c9985718433ac9fd63cb04fc5d0bbfd3306f410417259ab64c184e8c7c16671768deb9b5f747d3a524539850d4056dd0
|
7
|
+
data.tar.gz: 9d468391a703360fa8b03d87b7d6faaf2adbe152c6156fe761fab86e558e5b252a10510e437c733bbc958420748717a1a82e764258cf0bd7257d136c50a28b5a
|
@@ -13,6 +13,8 @@ module Deliver
|
|
13
13
|
IOS_47 = "iOS-4.7-in"
|
14
14
|
# iPhone 6 Plus
|
15
15
|
IOS_55 = "iOS-5.5-in"
|
16
|
+
# iPhone X
|
17
|
+
IOS_58 = "iOS-5.8-in"
|
16
18
|
# iPad
|
17
19
|
IOS_IPAD = "iOS-iPad"
|
18
20
|
# iPad Pro
|
@@ -23,6 +25,8 @@ module Deliver
|
|
23
25
|
IOS_47_MESSAGES = "iOS-4.7-in-messages"
|
24
26
|
# iPhone 6 Plus iMessage
|
25
27
|
IOS_55_MESSAGES = "iOS-5.5-in-messages"
|
28
|
+
# iPhone X iMessage
|
29
|
+
IOS_58_MESSAGES = "iOS-5.8-in-messages"
|
26
30
|
# iPad iMessage
|
27
31
|
IOS_IPAD_MESSAGES = "iOS-iPad-messages"
|
28
32
|
# iPad Pro iMessage
|
@@ -64,11 +68,13 @@ module Deliver
|
|
64
68
|
ScreenSize::IOS_40 => "iphone4",
|
65
69
|
ScreenSize::IOS_47 => "iphone6",
|
66
70
|
ScreenSize::IOS_55 => "iphone6Plus",
|
71
|
+
ScreenSize::IOS_58 => "iphone58",
|
67
72
|
ScreenSize::IOS_IPAD => "ipad",
|
68
73
|
ScreenSize::IOS_IPAD_PRO => "ipadPro",
|
69
74
|
ScreenSize::IOS_40_MESSAGES => "iphone4",
|
70
75
|
ScreenSize::IOS_47_MESSAGES => "iphone6",
|
71
76
|
ScreenSize::IOS_55_MESSAGES => "iphone6Plus",
|
77
|
+
ScreenSize::IOS_58_MESSAGES => "iphone58",
|
72
78
|
ScreenSize::IOS_IPAD_MESSAGES => "ipad",
|
73
79
|
ScreenSize::IOS_IPAD_PRO_MESSAGES => "ipadPro",
|
74
80
|
ScreenSize::MAC => "desktop",
|
@@ -85,11 +91,13 @@ module Deliver
|
|
85
91
|
ScreenSize::IOS_40 => "iPhone 5",
|
86
92
|
ScreenSize::IOS_47 => "iPhone 6",
|
87
93
|
ScreenSize::IOS_55 => "iPhone 6 Plus",
|
94
|
+
ScreenSize::IOS_58 => "iPhone X",
|
88
95
|
ScreenSize::IOS_IPAD => "iPad",
|
89
96
|
ScreenSize::IOS_IPAD_PRO => "iPad Pro",
|
90
97
|
ScreenSize::IOS_40_MESSAGES => "iPhone 5 (iMessage)",
|
91
98
|
ScreenSize::IOS_47_MESSAGES => "iPhone 6 (iMessage)",
|
92
99
|
ScreenSize::IOS_55_MESSAGES => "iPhone 6 Plus (iMessage)",
|
100
|
+
ScreenSize::IOS_58_MESSAGES => "iPhone X (iMessage)",
|
93
101
|
ScreenSize::IOS_IPAD_MESSAGES => "iPad (iMessage)",
|
94
102
|
ScreenSize::IOS_IPAD_PRO_MESSAGES => "iPad Pro (iMessage)",
|
95
103
|
ScreenSize::MAC => "Mac",
|
@@ -107,7 +115,7 @@ module Deliver
|
|
107
115
|
end
|
108
116
|
|
109
117
|
def is_messages?
|
110
|
-
return [ScreenSize::IOS_40_MESSAGES, ScreenSize::IOS_47_MESSAGES, ScreenSize::IOS_55_MESSAGES, ScreenSize::IOS_IPAD_MESSAGES, ScreenSize::IOS_IPAD_PRO_MESSAGES].include?(self.screen_size)
|
118
|
+
return [ScreenSize::IOS_40_MESSAGES, ScreenSize::IOS_47_MESSAGES, ScreenSize::IOS_55_MESSAGES, ScreenSize::IOS_58_MESSAGES, ScreenSize::IOS_IPAD_MESSAGES, ScreenSize::IOS_IPAD_PRO_MESSAGES].include?(self.screen_size)
|
111
119
|
end
|
112
120
|
|
113
121
|
def self.device_messages
|
@@ -143,6 +151,9 @@ module Deliver
|
|
143
151
|
|
144
152
|
def self.devices
|
145
153
|
return {
|
154
|
+
ScreenSize::IOS_58 => [
|
155
|
+
[1125, 2436]
|
156
|
+
],
|
146
157
|
ScreenSize::IOS_55 => [
|
147
158
|
[1080, 1920],
|
148
159
|
[1242, 2208]
|
@@ -1,5 +1,5 @@
|
|
1
1
|
module Fastlane
|
2
|
-
VERSION = '2.63.0.beta.
|
2
|
+
VERSION = '2.63.0.beta.20171030010003'.freeze
|
3
3
|
DESCRIPTION = "The easiest way to automate beta deployments and releases for your iOS and Android apps".freeze
|
4
4
|
MINIMUM_XCODE_RELEASE = "7.0".freeze
|
5
5
|
RUBOCOP_REQUIREMENT = '0.49.1'.freeze
|
@@ -93,6 +93,7 @@ module Spaceship
|
|
93
93
|
ipadPro: "MZPFT.SortedJ99ScreenShot",
|
94
94
|
iphone6: "MZPFT.SortedN61ScreenShot",
|
95
95
|
iphone6Plus: "MZPFT.SortedN56ScreenShot",
|
96
|
+
iphone58: "MZPFT.SortedD22ScreenShot",
|
96
97
|
iphone4: "MZPFT.SortedN41ScreenShot",
|
97
98
|
iphone35: "MZPFT.SortedScreenShot",
|
98
99
|
appleTV: "MZPFT.SortedATVScreenShot",
|
@@ -107,6 +108,7 @@ module Spaceship
|
|
107
108
|
ipadPro: "MZPFT.SortedJ99MessagesScreenShot",
|
108
109
|
iphone6: "MZPFT.SortedN61MessagesScreenShot",
|
109
110
|
iphone6Plus: "MZPFT.SortedN56MessagesScreenShot",
|
111
|
+
iphone58: "MZPFT.SortedD22MessagesScreenShot",
|
110
112
|
iphone4: "MZPFT.SortedN41MessagesScreenShot"
|
111
113
|
}
|
112
114
|
end
|
@@ -1,7 +1,7 @@
|
|
1
1
|
module Spaceship
|
2
2
|
module Tunes
|
3
3
|
class DeviceType
|
4
|
-
@types = ['iphone4', 'iphone35', 'iphone6', 'iphone6Plus', 'ipad', 'ipadPro', 'watch', 'appleTV', 'desktop']
|
4
|
+
@types = ['iphone4', 'iphone35', 'iphone6', 'iphone6Plus', 'iphone58', 'ipad', 'ipadPro', 'watch', 'appleTV', 'desktop']
|
5
5
|
class << self
|
6
6
|
attr_accessor :types
|
7
7
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.63.0.beta.
|
4
|
+
version: 2.63.0.beta.20171030010003
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Felix Krause
|
@@ -15,7 +15,7 @@ authors:
|
|
15
15
|
autorequire:
|
16
16
|
bindir: bin
|
17
17
|
cert_chain: []
|
18
|
-
date: 2017-10-
|
18
|
+
date: 2017-10-30 00:00:00.000000000 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
name: slack-notifier
|