fastlane 2.73.0 → 2.74.0.beta.20180106010004
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/deliver/lib/assets/summary.html.erb +2 -1
- data/fastlane/lib/fastlane.rb +0 -2
- data/fastlane/lib/fastlane/commands_generator.rb +5 -2
- data/fastlane/lib/fastlane/lane_manager.rb +0 -45
- data/fastlane/lib/fastlane/lane_manager_base.rb +4 -4
- data/fastlane/lib/fastlane/runner.rb +4 -0
- data/fastlane/lib/fastlane/server/{command.rb → action_command.rb} +16 -25
- data/fastlane/lib/fastlane/server/action_command_return.rb +14 -0
- data/fastlane/lib/fastlane/server/command_executor.rb +0 -2
- data/fastlane/lib/fastlane/server/command_parser.rb +20 -0
- data/fastlane/lib/fastlane/server/control_command.rb +23 -0
- data/fastlane/lib/fastlane/server/json_return_value_processor.rb +71 -0
- data/fastlane/lib/fastlane/server/socket_server.rb +111 -112
- data/fastlane/lib/fastlane/server/socket_server_action_command_executor.rb +4 -3
- data/fastlane/lib/fastlane/swift_lane_manager.rb +17 -6
- data/fastlane/lib/fastlane/version.rb +1 -1
- data/fastlane/swift/ControlCommand.swift +71 -0
- data/fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.pbxproj +8 -0
- data/fastlane/swift/LaneFileProtocol.swift +55 -27
- data/fastlane/swift/RubyCommand.swift +3 -6
- data/fastlane/swift/RubyCommandable.swift +38 -0
- data/fastlane/swift/Runner.swift +6 -3
- data/fastlane/swift/SocketClient.swift +43 -27
- data/fastlane/swift/SocketResponse.swift +7 -2
- data/fastlane/swift/main.swift +5 -3
- metadata +24 -24
- data/fastlane/lib/.DS_Store +0 -0
- data/fastlane/lib/assets/.DS_Store +0 -0
- data/fastlane/lib/fastlane/.DS_Store +0 -0
- data/fastlane/lib/fastlane/actions/.DS_Store +0 -0
- data/fastlane/lib/fastlane/actions/docs/.DS_Store +0 -0
- data/fastlane/lib/fastlane/setup/.DS_Store +0 -0
@@ -13,6 +13,7 @@ struct SocketResponse {
|
|
13
13
|
case parseFailure(failureInformation: [String])
|
14
14
|
case failure(failureInformation: [String])
|
15
15
|
case readyForNext(returnedObject: String?, closureArgumentValue: String?)
|
16
|
+
case clientInitiatedCancel
|
16
17
|
|
17
18
|
init(statusDictionary: [String : Any]) {
|
18
19
|
guard let status = statusDictionary["status"] as? String else {
|
@@ -25,7 +26,11 @@ struct SocketResponse {
|
|
25
26
|
let closureArgumentValue = statusDictionary["closure_argument_value"] as? String
|
26
27
|
self = .readyForNext(returnedObject: returnedObject, closureArgumentValue: closureArgumentValue)
|
27
28
|
return
|
28
|
-
|
29
|
+
|
30
|
+
} else if status == "cancelled" {
|
31
|
+
self = .clientInitiatedCancel
|
32
|
+
return
|
33
|
+
|
29
34
|
} else if status == "failure" {
|
30
35
|
guard let failureInformation = statusDictionary["failure_information"] as? [String] else {
|
31
36
|
self = .parseFailure(failureInformation: ["Ruby server indicated failure but Swift couldn't receive it"])
|
@@ -71,4 +76,4 @@ extension SocketResponse {
|
|
71
76
|
|
72
77
|
// Please don't remove the lines below
|
73
78
|
// They are used to detect outdated files
|
74
|
-
// FastlaneRunnerAPIVersion [0.9.
|
79
|
+
// FastlaneRunnerAPIVersion [0.9.2]
|
data/fastlane/swift/main.swift
CHANGED
@@ -18,8 +18,10 @@ class MainProcess {
|
|
18
18
|
@objc func connectToFastlaneAndRunLane() {
|
19
19
|
runner.startSocketThread()
|
20
20
|
|
21
|
-
Fastfile.runLane(named: argumentProcessor.currentLane, parameters: argumentProcessor.laneParameters())
|
22
|
-
|
21
|
+
let completedRun = Fastfile.runLane(named: argumentProcessor.currentLane, parameters: argumentProcessor.laneParameters())
|
22
|
+
if completedRun {
|
23
|
+
runner.disconnectFromFastlaneProcess()
|
24
|
+
}
|
23
25
|
|
24
26
|
doneRunningLane = true
|
25
27
|
}
|
@@ -40,4 +42,4 @@ while (!process.doneRunningLane && (RunLoop.current.run(mode: RunLoopMode.defaul
|
|
40
42
|
|
41
43
|
// Please don't remove the lines below
|
42
44
|
// They are used to detect outdated files
|
43
|
-
// FastlaneRunnerAPIVersion [0.9.
|
45
|
+
// FastlaneRunnerAPIVersion [0.9.2]
|
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.
|
4
|
+
version: 2.74.0.beta.20180106010004
|
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: 2018-01-
|
18
|
+
date: 2018-01-06 00:00:00.000000000 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
name: slack-notifier
|
@@ -855,8 +855,6 @@ files:
|
|
855
855
|
- deliver/lib/deliver/upload_price_tier.rb
|
856
856
|
- deliver/lib/deliver/upload_screenshots.rb
|
857
857
|
- fastlane/README.md
|
858
|
-
- fastlane/lib/.DS_Store
|
859
|
-
- fastlane/lib/assets/.DS_Store
|
860
858
|
- fastlane/lib/assets/ActionDetails.md.erb
|
861
859
|
- fastlane/lib/assets/Actions.md.erb
|
862
860
|
- fastlane/lib/assets/AppfileTemplate
|
@@ -876,10 +874,8 @@ files:
|
|
876
874
|
- fastlane/lib/assets/s3_plist_template.erb
|
877
875
|
- fastlane/lib/assets/s3_version_template.erb
|
878
876
|
- fastlane/lib/fastlane.rb
|
879
|
-
- fastlane/lib/fastlane/.DS_Store
|
880
877
|
- fastlane/lib/fastlane/action.rb
|
881
878
|
- fastlane/lib/fastlane/action_collector.rb
|
882
|
-
- fastlane/lib/fastlane/actions/.DS_Store
|
883
879
|
- fastlane/lib/fastlane/actions/README.md
|
884
880
|
- fastlane/lib/fastlane/actions/actions_helper.rb
|
885
881
|
- fastlane/lib/fastlane/actions/adb.rb
|
@@ -932,7 +928,6 @@ files:
|
|
932
928
|
- fastlane/lib/fastlane/actions/deliver.rb
|
933
929
|
- fastlane/lib/fastlane/actions/deploygate.rb
|
934
930
|
- fastlane/lib/fastlane/actions/device_grid/README.md
|
935
|
-
- fastlane/lib/fastlane/actions/docs/.DS_Store
|
936
931
|
- fastlane/lib/fastlane/actions/docs/cert.md
|
937
932
|
- fastlane/lib/fastlane/actions/docs/deliver.md
|
938
933
|
- fastlane/lib/fastlane/actions/docs/frameit.md
|
@@ -1163,11 +1158,14 @@ files:
|
|
1163
1158
|
- fastlane/lib/fastlane/plugins/template/spec/%plugin_name%_action_spec.rb.erb
|
1164
1159
|
- fastlane/lib/fastlane/plugins/template/spec/spec_helper.rb.erb
|
1165
1160
|
- fastlane/lib/fastlane/runner.rb
|
1166
|
-
- fastlane/lib/fastlane/server/
|
1161
|
+
- fastlane/lib/fastlane/server/action_command.rb
|
1162
|
+
- fastlane/lib/fastlane/server/action_command_return.rb
|
1167
1163
|
- fastlane/lib/fastlane/server/command_executor.rb
|
1164
|
+
- fastlane/lib/fastlane/server/command_parser.rb
|
1165
|
+
- fastlane/lib/fastlane/server/control_command.rb
|
1166
|
+
- fastlane/lib/fastlane/server/json_return_value_processor.rb
|
1168
1167
|
- fastlane/lib/fastlane/server/socket_server.rb
|
1169
1168
|
- fastlane/lib/fastlane/server/socket_server_action_command_executor.rb
|
1170
|
-
- fastlane/lib/fastlane/setup/.DS_Store
|
1171
1169
|
- fastlane/lib/fastlane/setup/crashlytics_beta.rb
|
1172
1170
|
- fastlane/lib/fastlane/setup/crashlytics_beta_command_line_handler.rb
|
1173
1171
|
- fastlane/lib/fastlane/setup/crashlytics_beta_info.rb
|
@@ -1187,6 +1185,7 @@ files:
|
|
1187
1185
|
- fastlane/lib/fastlane/version.rb
|
1188
1186
|
- fastlane/swift/Appfile.swift
|
1189
1187
|
- fastlane/swift/ArgumentProcessor.swift
|
1188
|
+
- fastlane/swift/ControlCommand.swift
|
1190
1189
|
- fastlane/swift/Deliverfile.swift
|
1191
1190
|
- fastlane/swift/DeliverfileProtocol.swift
|
1192
1191
|
- fastlane/swift/Fastfile.swift
|
@@ -1202,6 +1201,7 @@ files:
|
|
1202
1201
|
- fastlane/swift/Precheckfile.swift
|
1203
1202
|
- fastlane/swift/PrecheckfileProtocol.swift
|
1204
1203
|
- fastlane/swift/RubyCommand.swift
|
1204
|
+
- fastlane/swift/RubyCommandable.swift
|
1205
1205
|
- fastlane/swift/Runner.swift
|
1206
1206
|
- fastlane/swift/RunnerArgument.swift
|
1207
1207
|
- fastlane/swift/Scanfile.swift
|
@@ -1559,24 +1559,24 @@ metadata:
|
|
1559
1559
|
post_install_message:
|
1560
1560
|
rdoc_options: []
|
1561
1561
|
require_paths:
|
1562
|
-
-
|
1563
|
-
-
|
1564
|
-
- deliver/lib
|
1565
|
-
- fastlane/lib
|
1566
|
-
- fastlane_core/lib
|
1567
|
-
- frameit/lib
|
1568
|
-
- gym/lib
|
1562
|
+
- supply/lib
|
1563
|
+
- screengrab/lib
|
1569
1564
|
- match/lib
|
1570
|
-
- pem/lib
|
1571
|
-
- pilot/lib
|
1572
1565
|
- precheck/lib
|
1566
|
+
- sigh/lib
|
1573
1567
|
- produce/lib
|
1574
1568
|
- scan/lib
|
1575
|
-
-
|
1576
|
-
- sigh/lib
|
1569
|
+
- gym/lib
|
1577
1570
|
- snapshot/lib
|
1571
|
+
- frameit/lib
|
1572
|
+
- fastlane/lib
|
1573
|
+
- cert/lib
|
1574
|
+
- pilot/lib
|
1578
1575
|
- spaceship/lib
|
1579
|
-
-
|
1576
|
+
- credentials_manager/lib
|
1577
|
+
- deliver/lib
|
1578
|
+
- fastlane_core/lib
|
1579
|
+
- pem/lib
|
1580
1580
|
required_ruby_version: !ruby/object:Gem::Requirement
|
1581
1581
|
requirements:
|
1582
1582
|
- - ">="
|
@@ -1584,12 +1584,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
1584
1584
|
version: 2.0.0
|
1585
1585
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
1586
1586
|
requirements:
|
1587
|
-
- - "
|
1587
|
+
- - ">"
|
1588
1588
|
- !ruby/object:Gem::Version
|
1589
|
-
version:
|
1589
|
+
version: 1.3.1
|
1590
1590
|
requirements: []
|
1591
1591
|
rubyforge_project:
|
1592
|
-
rubygems_version: 2.
|
1592
|
+
rubygems_version: 2.4.5.1
|
1593
1593
|
signing_key:
|
1594
1594
|
specification_version: 4
|
1595
1595
|
summary: The easiest way to automate beta deployments and releases for your iOS and
|
data/fastlane/lib/.DS_Store
DELETED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|