fastlane 2.63.0.beta.20171023010003 → 2.63.0.beta.20171024010003
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: 5f0fba1ca2e527c5d26fad1216b6c922ae9029ba
|
4
|
+
data.tar.gz: 1af89ecd4ac47f0192d012a04b7a08f66f8d98f6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3a8dc0101448356888ddf312134bfe5f62a1903e9cca31cfa0e933891a0fffedb143d9d724597dbc0a363a4cbd90ddcac20d6f35fad701eec8eaf130bc140177
|
7
|
+
data.tar.gz: d7365d1388b0f922f2008d13223fb6cea69831a25bbe8f436429fe4dbc5870fdc3f114a764c2dff3754592cdd29788774c59b729981e29dbea67898ea94595c1
|
@@ -198,9 +198,6 @@ module Fastlane
|
|
198
198
|
# Actually switch lane now
|
199
199
|
self.current_lane = new_lane
|
200
200
|
|
201
|
-
launch_context = FastlaneCore::ActionLaunchContext.context_for_action_name('lane_switch', args: ARGV)
|
202
|
-
FastlaneCore.session.action_launched(launch_context: launch_context)
|
203
|
-
|
204
201
|
result = block.call(parameters.first || {}) # to always pass a hash
|
205
202
|
self.current_lane = original_lane
|
206
203
|
|
@@ -166,6 +166,13 @@ module Gym
|
|
166
166
|
hash[:uploadSymbols] = (Gym.config[:include_symbols] ? true : false) unless Gym.config[:include_symbols].nil?
|
167
167
|
hash[:uploadBitcode] = (Gym.config[:include_bitcode] ? true : false) unless Gym.config[:include_bitcode].nil?
|
168
168
|
end
|
169
|
+
|
170
|
+
# xcodebuild will not use provisioning profiles
|
171
|
+
# if we doens't specify signingStyle as manual
|
172
|
+
if Helper.xcode_at_least?("9.0") && hash[:provisioningProfiles]
|
173
|
+
hash[:signingStyle] = 'manual'
|
174
|
+
end
|
175
|
+
|
169
176
|
hash[:teamID] = Gym.config[:export_team_id] if Gym.config[:export_team_id]
|
170
177
|
|
171
178
|
UI.important("Generated plist file with the following values:")
|
@@ -153,7 +153,7 @@ open class Snapshot: NSObject {
|
|
153
153
|
|
154
154
|
let networkLoadingIndicator = XCUIApplication().otherElements.deviceStatusBars.networkLoadingIndicators.element
|
155
155
|
let networkLoadingIndicatorDisappeared = XCTNSPredicateExpectation(predicate: NSPredicate(format: "exists == false"), object: networkLoadingIndicator)
|
156
|
-
XCTWaiter.wait(for: [networkLoadingIndicatorDisappeared], timeout: timeout)
|
156
|
+
let _ = XCTWaiter.wait(for: [networkLoadingIndicatorDisappeared], timeout: timeout)
|
157
157
|
}
|
158
158
|
|
159
159
|
class func pathPrefix() throws -> URL? {
|
@@ -17,7 +17,7 @@ module Spaceship
|
|
17
17
|
attr_accessor :duration_days
|
18
18
|
attr_accessor :versions
|
19
19
|
attr_accessor :purple_apple_id
|
20
|
-
attr_accessor :
|
20
|
+
attr_accessor :last_modified_date
|
21
21
|
attr_accessor :is_news_subscription
|
22
22
|
attr_accessor :number_of_codes
|
23
23
|
attr_accessor :maximum_number_of_codes
|
@@ -34,7 +34,7 @@ module Spaceship
|
|
34
34
|
'durationDays' => :duration_days,
|
35
35
|
'versions' => :versions,
|
36
36
|
'purpleSoftwareAdamIds' => :purple_apple_id,
|
37
|
-
'lastModifiedDate' => :
|
37
|
+
'lastModifiedDate' => :last_modified_date,
|
38
38
|
'isNewsSubscription' => :is_news_subscription,
|
39
39
|
'numberOfCodes' => :number_of_codes,
|
40
40
|
'maximumNumberOfCodes' => :maximum_number_of_codes,
|
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.20171024010003
|
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-24 00:00:00.000000000 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
name: slack-notifier
|