fastlane 2.70.0.beta.20171214010003 → 2.70.0.beta.20171215010003
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/fastlane/lib/fastlane/actions/docs/pilot.md +10 -10
- data/fastlane/lib/fastlane/version.rb +1 -1
- data/fastlane/swift/Appfile.swift +17 -0
- data/fastlane/swift/ArgumentProcessor.swift +72 -0
- data/fastlane/swift/Deliverfile.swift +14 -0
- data/fastlane/swift/DeliverfileProtocol.swift +118 -0
- data/fastlane/swift/Fastfile.swift +12 -0
- data/fastlane/swift/Fastlane.swift +3739 -0
- data/fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.pbxproj +409 -0
- data/fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- data/fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/xcshareddata/xcschemes/FastlaneRunner.xcscheme +103 -0
- data/fastlane/swift/Gymfile.swift +14 -0
- data/fastlane/swift/GymfileProtocol.swift +86 -0
- data/fastlane/swift/LaneFileProtocol.swift +103 -0
- data/fastlane/swift/Matchfile.swift +14 -0
- data/fastlane/swift/MatchfileProtocol.swift +54 -0
- data/fastlane/swift/Precheckfile.swift +14 -0
- data/fastlane/swift/PrecheckfileProtocol.swift +24 -0
- data/fastlane/swift/RubyCommand.swift +138 -0
- data/fastlane/swift/Runner.swift +190 -0
- data/fastlane/swift/RunnerArgument.swift +18 -0
- data/fastlane/swift/Scanfile.swift +14 -0
- data/fastlane/swift/ScanfileProtocol.swift +88 -0
- data/fastlane/swift/Screengrabfile.swift +14 -0
- data/fastlane/swift/ScreengrabfileProtocol.swift +48 -0
- data/fastlane/swift/Snapshotfile.swift +14 -0
- data/fastlane/swift/SnapshotfileProtocol.swift +70 -0
- data/fastlane/swift/SocketClient.swift +283 -0
- data/fastlane/swift/SocketClientDelegateProtocol.swift +19 -0
- data/fastlane/swift/SocketResponse.swift +74 -0
- data/fastlane/swift/main.swift +43 -0
- data/match/lib/match/encrypt.rb +12 -0
- metadata +31 -2
@@ -0,0 +1,409 @@
|
|
1
|
+
// !$*UTF8*$!
|
2
|
+
{
|
3
|
+
archiveVersion = 1;
|
4
|
+
classes = {
|
5
|
+
};
|
6
|
+
objectVersion = 46;
|
7
|
+
objects = {
|
8
|
+
|
9
|
+
/* Begin PBXBuildFile section */
|
10
|
+
B302067B1F5E3E9000DE6EBD /* SnapshotfileProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = B30206741F5E3E9000DE6EBD /* SnapshotfileProtocol.swift */; };
|
11
|
+
B302067C1F5E3E9000DE6EBD /* GymfileProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = B30206751F5E3E9000DE6EBD /* GymfileProtocol.swift */; };
|
12
|
+
B302067D1F5E3E9000DE6EBD /* MatchfileProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = B30206761F5E3E9000DE6EBD /* MatchfileProtocol.swift */; };
|
13
|
+
B302067E1F5E3E9000DE6EBD /* PrecheckfileProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = B30206771F5E3E9000DE6EBD /* PrecheckfileProtocol.swift */; };
|
14
|
+
B302067F1F5E3E9000DE6EBD /* ScanfileProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = B30206781F5E3E9000DE6EBD /* ScanfileProtocol.swift */; };
|
15
|
+
B30206801F5E3E9000DE6EBD /* ScreengrabfileProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = B30206791F5E3E9000DE6EBD /* ScreengrabfileProtocol.swift */; };
|
16
|
+
B30206811F5E3E9000DE6EBD /* DeliverfileProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = B302067A1F5E3E9000DE6EBD /* DeliverfileProtocol.swift */; };
|
17
|
+
B3BA65A61F5A269100B34850 /* Fastlane.swift in Sources */ = {isa = PBXBuildFile; fileRef = B3BA659D1F5A269100B34850 /* Fastlane.swift */; };
|
18
|
+
B3BA65A71F5A269100B34850 /* LaneFileProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = B3BA659E1F5A269100B34850 /* LaneFileProtocol.swift */; };
|
19
|
+
B3BA65A81F5A269100B34850 /* main.swift in Sources */ = {isa = PBXBuildFile; fileRef = B3BA659F1F5A269100B34850 /* main.swift */; };
|
20
|
+
B3BA65A91F5A269100B34850 /* RubyCommand.swift in Sources */ = {isa = PBXBuildFile; fileRef = B3BA65A01F5A269100B34850 /* RubyCommand.swift */; };
|
21
|
+
B3BA65AA1F5A269100B34850 /* Runner.swift in Sources */ = {isa = PBXBuildFile; fileRef = B3BA65A11F5A269100B34850 /* Runner.swift */; };
|
22
|
+
B3BA65AB1F5A269100B34850 /* SocketClient.swift in Sources */ = {isa = PBXBuildFile; fileRef = B3BA65A21F5A269100B34850 /* SocketClient.swift */; };
|
23
|
+
B3BA65AC1F5A269100B34850 /* SocketClientDelegateProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = B3BA65A31F5A269100B34850 /* SocketClientDelegateProtocol.swift */; };
|
24
|
+
B3BA65AD1F5A269100B34850 /* SocketResponse.swift in Sources */ = {isa = PBXBuildFile; fileRef = B3BA65A41F5A269100B34850 /* SocketResponse.swift */; };
|
25
|
+
B3BA65AF1F5A2D5C00B34850 /* RunnerArgument.swift in Sources */ = {isa = PBXBuildFile; fileRef = B3BA65AE1F5A2D5C00B34850 /* RunnerArgument.swift */; };
|
26
|
+
D55B28C31F6C588300DC42C5 /* Deliverfile.swift in Sources */ = {isa = PBXBuildFile; fileRef = D55B28BC1F6C588300DC42C5 /* Deliverfile.swift */; };
|
27
|
+
D55B28C41F6C588300DC42C5 /* Gymfile.swift in Sources */ = {isa = PBXBuildFile; fileRef = D55B28BD1F6C588300DC42C5 /* Gymfile.swift */; };
|
28
|
+
D55B28C51F6C588300DC42C5 /* Matchfile.swift in Sources */ = {isa = PBXBuildFile; fileRef = D55B28BE1F6C588300DC42C5 /* Matchfile.swift */; };
|
29
|
+
D55B28C61F6C588300DC42C5 /* Precheckfile.swift in Sources */ = {isa = PBXBuildFile; fileRef = D55B28BF1F6C588300DC42C5 /* Precheckfile.swift */; };
|
30
|
+
D55B28C71F6C588300DC42C5 /* Scanfile.swift in Sources */ = {isa = PBXBuildFile; fileRef = D55B28C01F6C588300DC42C5 /* Scanfile.swift */; };
|
31
|
+
D55B28C81F6C588300DC42C5 /* Screengrabfile.swift in Sources */ = {isa = PBXBuildFile; fileRef = D55B28C11F6C588300DC42C5 /* Screengrabfile.swift */; };
|
32
|
+
D55B28C91F6C588300DC42C5 /* Snapshotfile.swift in Sources */ = {isa = PBXBuildFile; fileRef = D55B28C21F6C588300DC42C5 /* Snapshotfile.swift */; };
|
33
|
+
D5A7C48F1F7C4DAF00A91DE6 /* Appfile.swift in Sources */ = {isa = PBXBuildFile; fileRef = D5A7C48D1F7C4DAF00A91DE6 /* Appfile.swift */; };
|
34
|
+
D5A7C4901F7C4DAF00A91DE6 /* Fastfile.swift in Sources */ = {isa = PBXBuildFile; fileRef = D5A7C48E1F7C4DAF00A91DE6 /* Fastfile.swift */; };
|
35
|
+
D5BAFD121F7DAAFC0030B324 /* ArgumentProcessor.swift in Sources */ = {isa = PBXBuildFile; fileRef = D5BAFD111F7DAAFC0030B324 /* ArgumentProcessor.swift */; };
|
36
|
+
/* End PBXBuildFile section */
|
37
|
+
|
38
|
+
/* Begin PBXFileReference section */
|
39
|
+
B30206741F5E3E9000DE6EBD /* SnapshotfileProtocol.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = SnapshotfileProtocol.swift; path = ../SnapshotfileProtocol.swift; sourceTree = "<group>"; };
|
40
|
+
B30206751F5E3E9000DE6EBD /* GymfileProtocol.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = GymfileProtocol.swift; path = ../GymfileProtocol.swift; sourceTree = "<group>"; };
|
41
|
+
B30206761F5E3E9000DE6EBD /* MatchfileProtocol.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = MatchfileProtocol.swift; path = ../MatchfileProtocol.swift; sourceTree = "<group>"; };
|
42
|
+
B30206771F5E3E9000DE6EBD /* PrecheckfileProtocol.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = PrecheckfileProtocol.swift; path = ../PrecheckfileProtocol.swift; sourceTree = "<group>"; };
|
43
|
+
B30206781F5E3E9000DE6EBD /* ScanfileProtocol.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = ScanfileProtocol.swift; path = ../ScanfileProtocol.swift; sourceTree = "<group>"; };
|
44
|
+
B30206791F5E3E9000DE6EBD /* ScreengrabfileProtocol.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = ScreengrabfileProtocol.swift; path = ../ScreengrabfileProtocol.swift; sourceTree = "<group>"; };
|
45
|
+
B302067A1F5E3E9000DE6EBD /* DeliverfileProtocol.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = DeliverfileProtocol.swift; path = ../DeliverfileProtocol.swift; sourceTree = "<group>"; };
|
46
|
+
B3BA659D1F5A269100B34850 /* Fastlane.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = Fastlane.swift; path = ../Fastlane.swift; sourceTree = "<group>"; };
|
47
|
+
B3BA659E1F5A269100B34850 /* LaneFileProtocol.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = LaneFileProtocol.swift; path = ../LaneFileProtocol.swift; sourceTree = "<group>"; };
|
48
|
+
B3BA659F1F5A269100B34850 /* main.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = main.swift; path = ../main.swift; sourceTree = "<group>"; };
|
49
|
+
B3BA65A01F5A269100B34850 /* RubyCommand.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = RubyCommand.swift; path = ../RubyCommand.swift; sourceTree = "<group>"; };
|
50
|
+
B3BA65A11F5A269100B34850 /* Runner.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = Runner.swift; path = ../Runner.swift; sourceTree = "<group>"; };
|
51
|
+
B3BA65A21F5A269100B34850 /* SocketClient.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = SocketClient.swift; path = ../SocketClient.swift; sourceTree = "<group>"; };
|
52
|
+
B3BA65A31F5A269100B34850 /* SocketClientDelegateProtocol.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = SocketClientDelegateProtocol.swift; path = ../SocketClientDelegateProtocol.swift; sourceTree = "<group>"; };
|
53
|
+
B3BA65A41F5A269100B34850 /* SocketResponse.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = SocketResponse.swift; path = ../SocketResponse.swift; sourceTree = "<group>"; };
|
54
|
+
B3BA65AE1F5A2D5C00B34850 /* RunnerArgument.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = RunnerArgument.swift; path = ../RunnerArgument.swift; sourceTree = "<group>"; };
|
55
|
+
D556D6A91F6A08F5003108E3 /* FastlaneRunner */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = FastlaneRunner; sourceTree = BUILT_PRODUCTS_DIR; };
|
56
|
+
D55B28BC1F6C588300DC42C5 /* Deliverfile.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = Deliverfile.swift; path = ../Deliverfile.swift; sourceTree = "<group>"; };
|
57
|
+
D55B28BD1F6C588300DC42C5 /* Gymfile.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = Gymfile.swift; path = ../Gymfile.swift; sourceTree = "<group>"; };
|
58
|
+
D55B28BE1F6C588300DC42C5 /* Matchfile.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = Matchfile.swift; path = ../Matchfile.swift; sourceTree = "<group>"; };
|
59
|
+
D55B28BF1F6C588300DC42C5 /* Precheckfile.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = Precheckfile.swift; path = ../Precheckfile.swift; sourceTree = "<group>"; };
|
60
|
+
D55B28C01F6C588300DC42C5 /* Scanfile.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = Scanfile.swift; path = ../Scanfile.swift; sourceTree = "<group>"; };
|
61
|
+
D55B28C11F6C588300DC42C5 /* Screengrabfile.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = Screengrabfile.swift; path = ../Screengrabfile.swift; sourceTree = "<group>"; };
|
62
|
+
D55B28C21F6C588300DC42C5 /* Snapshotfile.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = Snapshotfile.swift; path = ../Snapshotfile.swift; sourceTree = "<group>"; };
|
63
|
+
D5A7C48D1F7C4DAF00A91DE6 /* Appfile.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = Appfile.swift; path = ../Appfile.swift; sourceTree = "<group>"; };
|
64
|
+
D5A7C48E1F7C4DAF00A91DE6 /* Fastfile.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = Fastfile.swift; path = ../Fastfile.swift; sourceTree = "<group>"; };
|
65
|
+
D5BAFD111F7DAAFC0030B324 /* ArgumentProcessor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = ArgumentProcessor.swift; path = ../ArgumentProcessor.swift; sourceTree = "<group>"; };
|
66
|
+
/* End PBXFileReference section */
|
67
|
+
|
68
|
+
/* Begin PBXFrameworksBuildPhase section */
|
69
|
+
B33BAF541F51F8D90001A751 /* Frameworks */ = {
|
70
|
+
isa = PBXFrameworksBuildPhase;
|
71
|
+
buildActionMask = 2147483647;
|
72
|
+
files = (
|
73
|
+
);
|
74
|
+
runOnlyForDeploymentPostprocessing = 0;
|
75
|
+
};
|
76
|
+
/* End PBXFrameworksBuildPhase section */
|
77
|
+
|
78
|
+
/* Begin PBXGroup section */
|
79
|
+
B33BAF4E1F51F8D90001A751 = {
|
80
|
+
isa = PBXGroup;
|
81
|
+
children = (
|
82
|
+
B3BA65B01F5A324A00B34850 /* Fastlane Runner */,
|
83
|
+
D556D6A91F6A08F5003108E3 /* FastlaneRunner */,
|
84
|
+
);
|
85
|
+
sourceTree = "<group>";
|
86
|
+
};
|
87
|
+
B3BA65B01F5A324A00B34850 /* Fastlane Runner */ = {
|
88
|
+
isa = PBXGroup;
|
89
|
+
children = (
|
90
|
+
B3BA65B21F5A327B00B34850 /* Autogenerated API */,
|
91
|
+
B3BA65B31F5A329800B34850 /* Fastfile Components */,
|
92
|
+
B3BA65B11F5A325E00B34850 /* Networking */,
|
93
|
+
D512BA011F7C7F40000D2137 /* Runner Code */,
|
94
|
+
D5A7C48D1F7C4DAF00A91DE6 /* Appfile.swift */,
|
95
|
+
D55B28BC1F6C588300DC42C5 /* Deliverfile.swift */,
|
96
|
+
D5A7C48E1F7C4DAF00A91DE6 /* Fastfile.swift */,
|
97
|
+
D55B28BD1F6C588300DC42C5 /* Gymfile.swift */,
|
98
|
+
D55B28BE1F6C588300DC42C5 /* Matchfile.swift */,
|
99
|
+
D55B28BF1F6C588300DC42C5 /* Precheckfile.swift */,
|
100
|
+
D55B28C01F6C588300DC42C5 /* Scanfile.swift */,
|
101
|
+
D55B28C11F6C588300DC42C5 /* Screengrabfile.swift */,
|
102
|
+
D55B28C21F6C588300DC42C5 /* Snapshotfile.swift */,
|
103
|
+
);
|
104
|
+
name = "Fastlane Runner";
|
105
|
+
sourceTree = "<group>";
|
106
|
+
};
|
107
|
+
B3BA65B11F5A325E00B34850 /* Networking */ = {
|
108
|
+
isa = PBXGroup;
|
109
|
+
children = (
|
110
|
+
B3BA65A01F5A269100B34850 /* RubyCommand.swift */,
|
111
|
+
B3BA65A11F5A269100B34850 /* Runner.swift */,
|
112
|
+
B3BA65A21F5A269100B34850 /* SocketClient.swift */,
|
113
|
+
B3BA65A31F5A269100B34850 /* SocketClientDelegateProtocol.swift */,
|
114
|
+
B3BA65A41F5A269100B34850 /* SocketResponse.swift */,
|
115
|
+
);
|
116
|
+
name = Networking;
|
117
|
+
sourceTree = "<group>";
|
118
|
+
};
|
119
|
+
B3BA65B21F5A327B00B34850 /* Autogenerated API */ = {
|
120
|
+
isa = PBXGroup;
|
121
|
+
children = (
|
122
|
+
B3BA659D1F5A269100B34850 /* Fastlane.swift */,
|
123
|
+
B302067A1F5E3E9000DE6EBD /* DeliverfileProtocol.swift */,
|
124
|
+
B30206751F5E3E9000DE6EBD /* GymfileProtocol.swift */,
|
125
|
+
B30206761F5E3E9000DE6EBD /* MatchfileProtocol.swift */,
|
126
|
+
B30206771F5E3E9000DE6EBD /* PrecheckfileProtocol.swift */,
|
127
|
+
B30206781F5E3E9000DE6EBD /* ScanfileProtocol.swift */,
|
128
|
+
B30206791F5E3E9000DE6EBD /* ScreengrabfileProtocol.swift */,
|
129
|
+
B30206741F5E3E9000DE6EBD /* SnapshotfileProtocol.swift */,
|
130
|
+
);
|
131
|
+
name = "Autogenerated API";
|
132
|
+
sourceTree = "<group>";
|
133
|
+
};
|
134
|
+
B3BA65B31F5A329800B34850 /* Fastfile Components */ = {
|
135
|
+
isa = PBXGroup;
|
136
|
+
children = (
|
137
|
+
B3BA659E1F5A269100B34850 /* LaneFileProtocol.swift */,
|
138
|
+
);
|
139
|
+
name = "Fastfile Components";
|
140
|
+
sourceTree = "<group>";
|
141
|
+
};
|
142
|
+
D512BA011F7C7F40000D2137 /* Runner Code */ = {
|
143
|
+
isa = PBXGroup;
|
144
|
+
children = (
|
145
|
+
D5BAFD111F7DAAFC0030B324 /* ArgumentProcessor.swift */,
|
146
|
+
B3BA659F1F5A269100B34850 /* main.swift */,
|
147
|
+
B3BA65AE1F5A2D5C00B34850 /* RunnerArgument.swift */,
|
148
|
+
);
|
149
|
+
name = "Runner Code";
|
150
|
+
sourceTree = "<group>";
|
151
|
+
};
|
152
|
+
/* End PBXGroup section */
|
153
|
+
|
154
|
+
/* Begin PBXNativeTarget section */
|
155
|
+
B33BAF561F51F8D90001A751 /* FastlaneRunner */ = {
|
156
|
+
isa = PBXNativeTarget;
|
157
|
+
buildConfigurationList = B33BAF5E1F51F8D90001A751 /* Build configuration list for PBXNativeTarget "FastlaneRunner" */;
|
158
|
+
buildPhases = (
|
159
|
+
B33BAF531F51F8D90001A751 /* Sources */,
|
160
|
+
B33BAF541F51F8D90001A751 /* Frameworks */,
|
161
|
+
D529C72B1F68BB1C0036536D /* ShellScript */,
|
162
|
+
);
|
163
|
+
buildRules = (
|
164
|
+
);
|
165
|
+
dependencies = (
|
166
|
+
);
|
167
|
+
name = FastlaneRunner;
|
168
|
+
productName = FastlaneSwiftRunner;
|
169
|
+
productReference = D556D6A91F6A08F5003108E3 /* FastlaneRunner */;
|
170
|
+
productType = "com.apple.product-type.tool";
|
171
|
+
};
|
172
|
+
/* End PBXNativeTarget section */
|
173
|
+
|
174
|
+
/* Begin PBXProject section */
|
175
|
+
B33BAF4F1F51F8D90001A751 /* Project object */ = {
|
176
|
+
isa = PBXProject;
|
177
|
+
attributes = {
|
178
|
+
LastSwiftUpdateCheck = 0830;
|
179
|
+
LastUpgradeCheck = 0900;
|
180
|
+
ORGANIZATIONNAME = "Joshua Liebowitz";
|
181
|
+
TargetAttributes = {
|
182
|
+
B33BAF561F51F8D90001A751 = {
|
183
|
+
CreatedOnToolsVersion = 8.3.3;
|
184
|
+
LastSwiftMigration = 0900;
|
185
|
+
ProvisioningStyle = Automatic;
|
186
|
+
};
|
187
|
+
};
|
188
|
+
};
|
189
|
+
buildConfigurationList = B33BAF521F51F8D90001A751 /* Build configuration list for PBXProject "FastlaneSwiftRunner" */;
|
190
|
+
compatibilityVersion = "Xcode 3.2";
|
191
|
+
developmentRegion = English;
|
192
|
+
hasScannedForEncodings = 0;
|
193
|
+
knownRegions = (
|
194
|
+
en,
|
195
|
+
);
|
196
|
+
mainGroup = B33BAF4E1F51F8D90001A751;
|
197
|
+
productRefGroup = B33BAF4E1F51F8D90001A751;
|
198
|
+
projectDirPath = "";
|
199
|
+
projectRoot = "";
|
200
|
+
targets = (
|
201
|
+
B33BAF561F51F8D90001A751 /* FastlaneRunner */,
|
202
|
+
);
|
203
|
+
};
|
204
|
+
/* End PBXProject section */
|
205
|
+
|
206
|
+
/* Begin PBXShellScriptBuildPhase section */
|
207
|
+
D529C72B1F68BB1C0036536D /* ShellScript */ = {
|
208
|
+
isa = PBXShellScriptBuildPhase;
|
209
|
+
buildActionMask = 2147483647;
|
210
|
+
files = (
|
211
|
+
);
|
212
|
+
inputPaths = (
|
213
|
+
);
|
214
|
+
outputPaths = (
|
215
|
+
);
|
216
|
+
runOnlyForDeploymentPostprocessing = 0;
|
217
|
+
shellPath = /bin/sh;
|
218
|
+
shellScript = "cd \"${SRCROOT}\"\ncd ../..\ncp \"${TARGET_BUILD_DIR}/${EXECUTABLE_PATH}\" .";
|
219
|
+
};
|
220
|
+
/* End PBXShellScriptBuildPhase section */
|
221
|
+
|
222
|
+
/* Begin PBXSourcesBuildPhase section */
|
223
|
+
B33BAF531F51F8D90001A751 /* Sources */ = {
|
224
|
+
isa = PBXSourcesBuildPhase;
|
225
|
+
buildActionMask = 2147483647;
|
226
|
+
files = (
|
227
|
+
B3BA65A91F5A269100B34850 /* RubyCommand.swift in Sources */,
|
228
|
+
D55B28C41F6C588300DC42C5 /* Gymfile.swift in Sources */,
|
229
|
+
B302067D1F5E3E9000DE6EBD /* MatchfileProtocol.swift in Sources */,
|
230
|
+
B3BA65AC1F5A269100B34850 /* SocketClientDelegateProtocol.swift in Sources */,
|
231
|
+
B3BA65A71F5A269100B34850 /* LaneFileProtocol.swift in Sources */,
|
232
|
+
D55B28C61F6C588300DC42C5 /* Precheckfile.swift in Sources */,
|
233
|
+
B302067F1F5E3E9000DE6EBD /* ScanfileProtocol.swift in Sources */,
|
234
|
+
D55B28C51F6C588300DC42C5 /* Matchfile.swift in Sources */,
|
235
|
+
B30206801F5E3E9000DE6EBD /* ScreengrabfileProtocol.swift in Sources */,
|
236
|
+
D5BAFD121F7DAAFC0030B324 /* ArgumentProcessor.swift in Sources */,
|
237
|
+
B302067C1F5E3E9000DE6EBD /* GymfileProtocol.swift in Sources */,
|
238
|
+
B302067B1F5E3E9000DE6EBD /* SnapshotfileProtocol.swift in Sources */,
|
239
|
+
D55B28C31F6C588300DC42C5 /* Deliverfile.swift in Sources */,
|
240
|
+
D5A7C4901F7C4DAF00A91DE6 /* Fastfile.swift in Sources */,
|
241
|
+
D5A7C48F1F7C4DAF00A91DE6 /* Appfile.swift in Sources */,
|
242
|
+
B3BA65AB1F5A269100B34850 /* SocketClient.swift in Sources */,
|
243
|
+
B30206811F5E3E9000DE6EBD /* DeliverfileProtocol.swift in Sources */,
|
244
|
+
B3BA65AA1F5A269100B34850 /* Runner.swift in Sources */,
|
245
|
+
B3BA65AF1F5A2D5C00B34850 /* RunnerArgument.swift in Sources */,
|
246
|
+
B302067E1F5E3E9000DE6EBD /* PrecheckfileProtocol.swift in Sources */,
|
247
|
+
B3BA65AD1F5A269100B34850 /* SocketResponse.swift in Sources */,
|
248
|
+
B3BA65A81F5A269100B34850 /* main.swift in Sources */,
|
249
|
+
D55B28C71F6C588300DC42C5 /* Scanfile.swift in Sources */,
|
250
|
+
D55B28C91F6C588300DC42C5 /* Snapshotfile.swift in Sources */,
|
251
|
+
B3BA65A61F5A269100B34850 /* Fastlane.swift in Sources */,
|
252
|
+
D55B28C81F6C588300DC42C5 /* Screengrabfile.swift in Sources */,
|
253
|
+
);
|
254
|
+
runOnlyForDeploymentPostprocessing = 0;
|
255
|
+
};
|
256
|
+
/* End PBXSourcesBuildPhase section */
|
257
|
+
|
258
|
+
/* Begin XCBuildConfiguration section */
|
259
|
+
B33BAF5C1F51F8D90001A751 /* Debug */ = {
|
260
|
+
isa = XCBuildConfiguration;
|
261
|
+
buildSettings = {
|
262
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
263
|
+
CLANG_ANALYZER_NONNULL = YES;
|
264
|
+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
265
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
266
|
+
CLANG_CXX_LIBRARY = "libc++";
|
267
|
+
CLANG_ENABLE_MODULES = YES;
|
268
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
269
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
270
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
271
|
+
CLANG_WARN_COMMA = YES;
|
272
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
273
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
274
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
275
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
276
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
277
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
278
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
279
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
280
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
281
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
282
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
283
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
284
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
285
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
286
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
287
|
+
CODE_SIGN_IDENTITY = "-";
|
288
|
+
COPY_PHASE_STRIP = NO;
|
289
|
+
DEBUG_INFORMATION_FORMAT = dwarf;
|
290
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
291
|
+
ENABLE_TESTABILITY = YES;
|
292
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
293
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
294
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
295
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
296
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
297
|
+
"DEBUG=1",
|
298
|
+
"$(inherited)",
|
299
|
+
);
|
300
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
301
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
302
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
303
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
304
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
305
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
306
|
+
MACOSX_DEPLOYMENT_TARGET = 10.12;
|
307
|
+
MTL_ENABLE_DEBUG_INFO = YES;
|
308
|
+
ONLY_ACTIVE_ARCH = YES;
|
309
|
+
SDKROOT = macosx;
|
310
|
+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
311
|
+
SWIFT_SWIFT3_OBJC_INFERENCE = Off;
|
312
|
+
};
|
313
|
+
name = Debug;
|
314
|
+
};
|
315
|
+
B33BAF5D1F51F8D90001A751 /* Release */ = {
|
316
|
+
isa = XCBuildConfiguration;
|
317
|
+
buildSettings = {
|
318
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
319
|
+
CLANG_ANALYZER_NONNULL = YES;
|
320
|
+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
321
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
322
|
+
CLANG_CXX_LIBRARY = "libc++";
|
323
|
+
CLANG_ENABLE_MODULES = YES;
|
324
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
325
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
326
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
327
|
+
CLANG_WARN_COMMA = YES;
|
328
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
329
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
330
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
331
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
332
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
333
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
334
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
335
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
336
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
337
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
338
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
339
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
340
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
341
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
342
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
343
|
+
CODE_SIGN_IDENTITY = "-";
|
344
|
+
COPY_PHASE_STRIP = NO;
|
345
|
+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
346
|
+
ENABLE_NS_ASSERTIONS = NO;
|
347
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
348
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
349
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
350
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
351
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
352
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
353
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
354
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
355
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
356
|
+
MACOSX_DEPLOYMENT_TARGET = 10.12;
|
357
|
+
MTL_ENABLE_DEBUG_INFO = NO;
|
358
|
+
SDKROOT = macosx;
|
359
|
+
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
|
360
|
+
SWIFT_SWIFT3_OBJC_INFERENCE = Off;
|
361
|
+
};
|
362
|
+
name = Release;
|
363
|
+
};
|
364
|
+
B33BAF5F1F51F8D90001A751 /* Debug */ = {
|
365
|
+
isa = XCBuildConfiguration;
|
366
|
+
buildSettings = {
|
367
|
+
CLANG_ENABLE_MODULES = YES;
|
368
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks";
|
369
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
370
|
+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
371
|
+
SWIFT_VERSION = 4.0;
|
372
|
+
};
|
373
|
+
name = Debug;
|
374
|
+
};
|
375
|
+
B33BAF601F51F8D90001A751 /* Release */ = {
|
376
|
+
isa = XCBuildConfiguration;
|
377
|
+
buildSettings = {
|
378
|
+
CLANG_ENABLE_MODULES = YES;
|
379
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks";
|
380
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
381
|
+
SWIFT_VERSION = 4.0;
|
382
|
+
};
|
383
|
+
name = Release;
|
384
|
+
};
|
385
|
+
/* End XCBuildConfiguration section */
|
386
|
+
|
387
|
+
/* Begin XCConfigurationList section */
|
388
|
+
B33BAF521F51F8D90001A751 /* Build configuration list for PBXProject "FastlaneSwiftRunner" */ = {
|
389
|
+
isa = XCConfigurationList;
|
390
|
+
buildConfigurations = (
|
391
|
+
B33BAF5C1F51F8D90001A751 /* Debug */,
|
392
|
+
B33BAF5D1F51F8D90001A751 /* Release */,
|
393
|
+
);
|
394
|
+
defaultConfigurationIsVisible = 0;
|
395
|
+
defaultConfigurationName = Release;
|
396
|
+
};
|
397
|
+
B33BAF5E1F51F8D90001A751 /* Build configuration list for PBXNativeTarget "FastlaneRunner" */ = {
|
398
|
+
isa = XCConfigurationList;
|
399
|
+
buildConfigurations = (
|
400
|
+
B33BAF5F1F51F8D90001A751 /* Debug */,
|
401
|
+
B33BAF601F51F8D90001A751 /* Release */,
|
402
|
+
);
|
403
|
+
defaultConfigurationIsVisible = 0;
|
404
|
+
defaultConfigurationName = Release;
|
405
|
+
};
|
406
|
+
/* End XCConfigurationList section */
|
407
|
+
};
|
408
|
+
rootObject = B33BAF4F1F51F8D90001A751 /* Project object */;
|
409
|
+
}
|
@@ -0,0 +1,103 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<Scheme
|
3
|
+
LastUpgradeVersion = "0900"
|
4
|
+
version = "1.3">
|
5
|
+
<BuildAction
|
6
|
+
parallelizeBuildables = "YES"
|
7
|
+
buildImplicitDependencies = "YES">
|
8
|
+
<BuildActionEntries>
|
9
|
+
<BuildActionEntry
|
10
|
+
buildForTesting = "YES"
|
11
|
+
buildForRunning = "YES"
|
12
|
+
buildForProfiling = "YES"
|
13
|
+
buildForArchiving = "YES"
|
14
|
+
buildForAnalyzing = "YES">
|
15
|
+
<BuildableReference
|
16
|
+
BuildableIdentifier = "primary"
|
17
|
+
BlueprintIdentifier = "B33BAF561F51F8D90001A751"
|
18
|
+
BuildableName = "FastlaneRunner"
|
19
|
+
BlueprintName = "FastlaneRunner"
|
20
|
+
ReferencedContainer = "container:FastlaneSwiftRunner.xcodeproj">
|
21
|
+
</BuildableReference>
|
22
|
+
</BuildActionEntry>
|
23
|
+
</BuildActionEntries>
|
24
|
+
</BuildAction>
|
25
|
+
<TestAction
|
26
|
+
buildConfiguration = "Debug"
|
27
|
+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
28
|
+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
29
|
+
language = ""
|
30
|
+
shouldUseLaunchSchemeArgsEnv = "YES">
|
31
|
+
<Testables>
|
32
|
+
</Testables>
|
33
|
+
<MacroExpansion>
|
34
|
+
<BuildableReference
|
35
|
+
BuildableIdentifier = "primary"
|
36
|
+
BlueprintIdentifier = "B33BAF561F51F8D90001A751"
|
37
|
+
BuildableName = "FastlaneRunner"
|
38
|
+
BlueprintName = "FastlaneRunner"
|
39
|
+
ReferencedContainer = "container:FastlaneSwiftRunner.xcodeproj">
|
40
|
+
</BuildableReference>
|
41
|
+
</MacroExpansion>
|
42
|
+
<AdditionalOptions>
|
43
|
+
</AdditionalOptions>
|
44
|
+
</TestAction>
|
45
|
+
<LaunchAction
|
46
|
+
buildConfiguration = "Debug"
|
47
|
+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
48
|
+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
49
|
+
language = ""
|
50
|
+
launchStyle = "0"
|
51
|
+
useCustomWorkingDirectory = "NO"
|
52
|
+
ignoresPersistentStateOnLaunch = "NO"
|
53
|
+
debugDocumentVersioning = "YES"
|
54
|
+
debugServiceExtension = "internal"
|
55
|
+
allowLocationSimulation = "YES">
|
56
|
+
<BuildableProductRunnable
|
57
|
+
runnableDebuggingMode = "0">
|
58
|
+
<BuildableReference
|
59
|
+
BuildableIdentifier = "primary"
|
60
|
+
BlueprintIdentifier = "B33BAF561F51F8D90001A751"
|
61
|
+
BuildableName = "FastlaneRunner"
|
62
|
+
BlueprintName = "FastlaneRunner"
|
63
|
+
ReferencedContainer = "container:FastlaneSwiftRunner.xcodeproj">
|
64
|
+
</BuildableReference>
|
65
|
+
</BuildableProductRunnable>
|
66
|
+
<CommandLineArguments>
|
67
|
+
<CommandLineArgument
|
68
|
+
argument = "lane test"
|
69
|
+
isEnabled = "YES">
|
70
|
+
</CommandLineArgument>
|
71
|
+
<CommandLineArgument
|
72
|
+
argument = "logMode verbose"
|
73
|
+
isEnabled = "YES">
|
74
|
+
</CommandLineArgument>
|
75
|
+
</CommandLineArguments>
|
76
|
+
<AdditionalOptions>
|
77
|
+
</AdditionalOptions>
|
78
|
+
</LaunchAction>
|
79
|
+
<ProfileAction
|
80
|
+
buildConfiguration = "Release"
|
81
|
+
shouldUseLaunchSchemeArgsEnv = "YES"
|
82
|
+
savedToolIdentifier = ""
|
83
|
+
useCustomWorkingDirectory = "NO"
|
84
|
+
debugDocumentVersioning = "YES">
|
85
|
+
<BuildableProductRunnable
|
86
|
+
runnableDebuggingMode = "0">
|
87
|
+
<BuildableReference
|
88
|
+
BuildableIdentifier = "primary"
|
89
|
+
BlueprintIdentifier = "B33BAF561F51F8D90001A751"
|
90
|
+
BuildableName = "FastlaneRunner"
|
91
|
+
BlueprintName = "FastlaneRunner"
|
92
|
+
ReferencedContainer = "container:FastlaneSwiftRunner.xcodeproj">
|
93
|
+
</BuildableReference>
|
94
|
+
</BuildableProductRunnable>
|
95
|
+
</ProfileAction>
|
96
|
+
<AnalyzeAction
|
97
|
+
buildConfiguration = "Debug">
|
98
|
+
</AnalyzeAction>
|
99
|
+
<ArchiveAction
|
100
|
+
buildConfiguration = "Release"
|
101
|
+
revealArchiveInOrganizer = "YES">
|
102
|
+
</ArchiveAction>
|
103
|
+
</Scheme>
|
@@ -0,0 +1,14 @@
|
|
1
|
+
// This class is automatically included in FastlaneRunner during build
|
2
|
+
|
3
|
+
// This autogenerated file will be overwritten or replaced during build time, or when you initialize `gym`
|
4
|
+
class Gymfile: GymfileProtocol {
|
5
|
+
// If you want to enable `gym`, run `fastlane gym init`
|
6
|
+
// After, this file will be replaced with a custom implementation that contains values you supplied
|
7
|
+
// during the `init` process, and you won't see this message
|
8
|
+
}
|
9
|
+
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
|
14
|
+
// Generated with fastlane 2.69.2
|
@@ -0,0 +1,86 @@
|
|
1
|
+
protocol GymfileProtocol: class {
|
2
|
+
var workspace: String? { get }
|
3
|
+
var project: String? { get }
|
4
|
+
var scheme: String? { get }
|
5
|
+
var clean: Bool { get }
|
6
|
+
var outputDirectory: String { get }
|
7
|
+
var outputName: String? { get }
|
8
|
+
var configuration: String? { get }
|
9
|
+
var silent: Bool { get }
|
10
|
+
var codesigningIdentity: String? { get }
|
11
|
+
var skipPackageIpa: Bool { get }
|
12
|
+
var includeSymbols: Bool? { get }
|
13
|
+
var includeBitcode: Bool? { get }
|
14
|
+
var exportMethod: String? { get }
|
15
|
+
var exportOptions: [String : Any]? { get }
|
16
|
+
var exportXcargs: String? { get }
|
17
|
+
var skipBuildArchive: Bool? { get }
|
18
|
+
var skipArchive: Bool? { get }
|
19
|
+
var buildPath: String? { get }
|
20
|
+
var archivePath: String? { get }
|
21
|
+
var derivedDataPath: String? { get }
|
22
|
+
var resultBundle: String? { get }
|
23
|
+
var buildlogPath: String { get }
|
24
|
+
var sdk: String? { get }
|
25
|
+
var toolchain: String? { get }
|
26
|
+
var destination: String? { get }
|
27
|
+
var exportTeamId: String? { get }
|
28
|
+
var xcargs: String? { get }
|
29
|
+
var xcconfig: String? { get }
|
30
|
+
var suppressXcodeOutput: String? { get }
|
31
|
+
var disableXcpretty: String? { get }
|
32
|
+
var xcprettyTestFormat: String? { get }
|
33
|
+
var xcprettyFormatter: String? { get }
|
34
|
+
var xcprettyReportJunit: String? { get }
|
35
|
+
var xcprettyReportHtml: String? { get }
|
36
|
+
var xcprettyReportJson: String? { get }
|
37
|
+
var analyzeBuildTime: String? { get }
|
38
|
+
var xcprettyUtf: String? { get }
|
39
|
+
var skipProfileDetection: Bool { get }
|
40
|
+
}
|
41
|
+
|
42
|
+
extension GymfileProtocol {
|
43
|
+
var workspace: String? { return nil }
|
44
|
+
var project: String? { return nil }
|
45
|
+
var scheme: String? { return nil }
|
46
|
+
var clean: Bool { return false }
|
47
|
+
var outputDirectory: String { return "." }
|
48
|
+
var outputName: String? { return nil }
|
49
|
+
var configuration: String? { return nil }
|
50
|
+
var silent: Bool { return false }
|
51
|
+
var codesigningIdentity: String? { return nil }
|
52
|
+
var skipPackageIpa: Bool { return false }
|
53
|
+
var includeSymbols: Bool? { return nil }
|
54
|
+
var includeBitcode: Bool? { return nil }
|
55
|
+
var exportMethod: String? { return nil }
|
56
|
+
var exportOptions: [String : Any]? { return nil }
|
57
|
+
var exportXcargs: String? { return nil }
|
58
|
+
var skipBuildArchive: Bool? { return nil }
|
59
|
+
var skipArchive: Bool? { return nil }
|
60
|
+
var buildPath: String? { return nil }
|
61
|
+
var archivePath: String? { return nil }
|
62
|
+
var derivedDataPath: String? { return nil }
|
63
|
+
var resultBundle: String? { return nil }
|
64
|
+
var buildlogPath: String { return "~/Library/Logs/gym" }
|
65
|
+
var sdk: String? { return nil }
|
66
|
+
var toolchain: String? { return nil }
|
67
|
+
var destination: String? { return nil }
|
68
|
+
var exportTeamId: String? { return nil }
|
69
|
+
var xcargs: String? { return nil }
|
70
|
+
var xcconfig: String? { return nil }
|
71
|
+
var suppressXcodeOutput: String? { return nil }
|
72
|
+
var disableXcpretty: String? { return nil }
|
73
|
+
var xcprettyTestFormat: String? { return nil }
|
74
|
+
var xcprettyFormatter: String? { return nil }
|
75
|
+
var xcprettyReportJunit: String? { return nil }
|
76
|
+
var xcprettyReportHtml: String? { return nil }
|
77
|
+
var xcprettyReportJson: String? { return nil }
|
78
|
+
var analyzeBuildTime: String? { return nil }
|
79
|
+
var xcprettyUtf: String? { return nil }
|
80
|
+
var skipProfileDetection: Bool { return false }
|
81
|
+
}
|
82
|
+
|
83
|
+
|
84
|
+
// Please don't remove the lines below
|
85
|
+
// They are used to detect outdated files
|
86
|
+
// FastlaneRunnerAPIVersion [0.9.1]
|