gauge-ruby 0.9.0 → 0.9.2
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/lib/messages_pb.rb +61 -320
- data/lib/services_pb.rb +7 -4
- data/lib/services_services_pb.rb +79 -34
- data/lib/spec_pb.rb +34 -262
- metadata +14 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 99cd1cf8dbc5e967831c7368db49c3d1c3ae552cec0b3636c3a49743fb148e1d
|
4
|
+
data.tar.gz: '089fdf4fc44d4232c23eccc4f79259cb3301d53229cccdf1ee6918c36d5755c2'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e9f5ebd708af970dc21f5c965d5e8d21bf8ea0d5a3dc95bfb58690fc6c3e54a635ce2ae5e3bcdaf28c2926b34ce1f4e5cefdaaaedaa94a9319dc2e65a6239d3f
|
7
|
+
data.tar.gz: 79fa73a33ca76e349452b5907f0888f5b9d6204fcb5ad44d94530d6cc0a7dc50fae3fafae303983b1f22e9b28f22d321b55adc60037aeca4aafb27017767ac6a
|
data/lib/messages_pb.rb
CHANGED
@@ -1,331 +1,72 @@
|
|
1
|
+
# frozen_string_literal: true
|
1
2
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
3
|
# source: messages.proto
|
3
4
|
|
4
5
|
require 'google/protobuf'
|
5
6
|
|
6
7
|
require 'spec_pb'
|
7
|
-
|
8
|
-
|
9
|
-
add_message "gauge.messages.KillProcessRequest" do
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
end
|
14
|
-
add_message "gauge.messages.ExecutionStartingRequest" do
|
15
|
-
optional :currentExecutionInfo, :message, 1, "gauge.messages.ExecutionInfo"
|
16
|
-
optional :suiteResult, :message, 2, "gauge.messages.ProtoSuiteResult"
|
17
|
-
end
|
18
|
-
add_message "gauge.messages.ExecutionEndingRequest" do
|
19
|
-
optional :currentExecutionInfo, :message, 1, "gauge.messages.ExecutionInfo"
|
20
|
-
optional :suiteResult, :message, 2, "gauge.messages.ProtoSuiteResult"
|
21
|
-
end
|
22
|
-
add_message "gauge.messages.SpecExecutionStartingRequest" do
|
23
|
-
optional :currentExecutionInfo, :message, 1, "gauge.messages.ExecutionInfo"
|
24
|
-
optional :specResult, :message, 2, "gauge.messages.ProtoSpecResult"
|
25
|
-
end
|
26
|
-
add_message "gauge.messages.SpecExecutionEndingRequest" do
|
27
|
-
optional :currentExecutionInfo, :message, 1, "gauge.messages.ExecutionInfo"
|
28
|
-
optional :specResult, :message, 2, "gauge.messages.ProtoSpecResult"
|
29
|
-
end
|
30
|
-
add_message "gauge.messages.ScenarioExecutionStartingRequest" do
|
31
|
-
optional :currentExecutionInfo, :message, 1, "gauge.messages.ExecutionInfo"
|
32
|
-
optional :scenarioResult, :message, 2, "gauge.messages.ProtoScenarioResult"
|
33
|
-
end
|
34
|
-
add_message "gauge.messages.ScenarioExecutionEndingRequest" do
|
35
|
-
optional :currentExecutionInfo, :message, 1, "gauge.messages.ExecutionInfo"
|
36
|
-
optional :scenarioResult, :message, 2, "gauge.messages.ProtoScenarioResult"
|
37
|
-
end
|
38
|
-
add_message "gauge.messages.StepExecutionStartingRequest" do
|
39
|
-
optional :currentExecutionInfo, :message, 1, "gauge.messages.ExecutionInfo"
|
40
|
-
optional :stepResult, :message, 2, "gauge.messages.ProtoStepResult"
|
41
|
-
end
|
42
|
-
add_message "gauge.messages.StepExecutionEndingRequest" do
|
43
|
-
optional :currentExecutionInfo, :message, 1, "gauge.messages.ExecutionInfo"
|
44
|
-
optional :stepResult, :message, 2, "gauge.messages.ProtoStepResult"
|
45
|
-
end
|
46
|
-
add_message "gauge.messages.ExecutionArg" do
|
47
|
-
optional :flagName, :string, 1
|
48
|
-
repeated :flagValue, :string, 2
|
49
|
-
end
|
50
|
-
add_message "gauge.messages.ExecutionInfo" do
|
51
|
-
optional :currentSpec, :message, 1, "gauge.messages.SpecInfo"
|
52
|
-
optional :currentScenario, :message, 2, "gauge.messages.ScenarioInfo"
|
53
|
-
optional :currentStep, :message, 3, "gauge.messages.StepInfo"
|
54
|
-
optional :stacktrace, :string, 4
|
55
|
-
optional :projectName, :string, 5
|
56
|
-
repeated :ExecutionArgs, :message, 6, "gauge.messages.ExecutionArg"
|
57
|
-
optional :numberOfExecutionStreams, :int32, 7
|
58
|
-
optional :runnerId, :int32, 8
|
59
|
-
end
|
60
|
-
add_message "gauge.messages.SpecInfo" do
|
61
|
-
optional :name, :string, 1
|
62
|
-
optional :fileName, :string, 2
|
63
|
-
optional :isFailed, :bool, 3
|
64
|
-
repeated :tags, :string, 4
|
65
|
-
end
|
66
|
-
add_message "gauge.messages.ScenarioInfo" do
|
67
|
-
optional :name, :string, 1
|
68
|
-
optional :isFailed, :bool, 2
|
69
|
-
repeated :tags, :string, 3
|
70
|
-
end
|
71
|
-
add_message "gauge.messages.StepInfo" do
|
72
|
-
optional :step, :message, 1, "gauge.messages.ExecuteStepRequest"
|
73
|
-
optional :isFailed, :bool, 2
|
74
|
-
optional :stackTrace, :string, 3
|
75
|
-
optional :errorMessage, :string, 4
|
76
|
-
end
|
77
|
-
add_message "gauge.messages.ExecuteStepRequest" do
|
78
|
-
optional :actualStepText, :string, 1
|
79
|
-
optional :parsedStepText, :string, 2
|
80
|
-
optional :scenarioFailing, :bool, 3
|
81
|
-
repeated :parameters, :message, 4, "gauge.messages.Parameter"
|
82
|
-
end
|
83
|
-
add_message "gauge.messages.StepValidateRequest" do
|
84
|
-
optional :stepText, :string, 1
|
85
|
-
optional :numberOfParameters, :int32, 2
|
86
|
-
optional :stepValue, :message, 3, "gauge.messages.ProtoStepValue"
|
87
|
-
end
|
88
|
-
add_message "gauge.messages.StepValidateResponse" do
|
89
|
-
optional :isValid, :bool, 1
|
90
|
-
optional :errorMessage, :string, 2
|
91
|
-
optional :errorType, :enum, 3, "gauge.messages.StepValidateResponse.ErrorType"
|
92
|
-
optional :suggestion, :string, 4
|
93
|
-
end
|
94
|
-
add_enum "gauge.messages.StepValidateResponse.ErrorType" do
|
95
|
-
value :STEP_IMPLEMENTATION_NOT_FOUND, 0
|
96
|
-
value :DUPLICATE_STEP_IMPLEMENTATION, 1
|
97
|
-
end
|
98
|
-
add_message "gauge.messages.SuiteExecutionResult" do
|
99
|
-
optional :suiteResult, :message, 1, "gauge.messages.ProtoSuiteResult"
|
100
|
-
end
|
101
|
-
add_message "gauge.messages.SuiteExecutionResultItem" do
|
102
|
-
optional :resultItem, :message, 1, "gauge.messages.ProtoItem"
|
103
|
-
end
|
104
|
-
add_message "gauge.messages.StepNamesRequest" do
|
105
|
-
end
|
106
|
-
add_message "gauge.messages.StepNamesResponse" do
|
107
|
-
repeated :steps, :string, 1
|
108
|
-
end
|
109
|
-
add_message "gauge.messages.ScenarioDataStoreInitRequest" do
|
110
|
-
end
|
111
|
-
add_message "gauge.messages.SpecDataStoreInitRequest" do
|
112
|
-
end
|
113
|
-
add_message "gauge.messages.SuiteDataStoreInitRequest" do
|
114
|
-
end
|
115
|
-
add_message "gauge.messages.ParameterPosition" do
|
116
|
-
optional :oldPosition, :int32, 1
|
117
|
-
optional :newPosition, :int32, 2
|
118
|
-
end
|
119
|
-
add_message "gauge.messages.RefactorRequest" do
|
120
|
-
optional :oldStepValue, :message, 1, "gauge.messages.ProtoStepValue"
|
121
|
-
optional :newStepValue, :message, 2, "gauge.messages.ProtoStepValue"
|
122
|
-
repeated :paramPositions, :message, 3, "gauge.messages.ParameterPosition"
|
123
|
-
optional :saveChanges, :bool, 4
|
124
|
-
end
|
125
|
-
add_message "gauge.messages.FileChanges" do
|
126
|
-
optional :fileName, :string, 1
|
127
|
-
optional :fileContent, :string, 2
|
128
|
-
repeated :diffs, :message, 3, "gauge.messages.TextDiff"
|
129
|
-
end
|
130
|
-
add_message "gauge.messages.RefactorResponse" do
|
131
|
-
optional :success, :bool, 1
|
132
|
-
optional :error, :string, 2
|
133
|
-
repeated :filesChanged, :string, 3
|
134
|
-
repeated :fileChanges, :message, 4, "gauge.messages.FileChanges"
|
135
|
-
end
|
136
|
-
add_message "gauge.messages.StepNameRequest" do
|
137
|
-
optional :stepValue, :string, 1
|
138
|
-
end
|
139
|
-
add_message "gauge.messages.StepNameResponse" do
|
140
|
-
optional :isStepPresent, :bool, 1
|
141
|
-
repeated :stepName, :string, 2
|
142
|
-
optional :hasAlias, :bool, 3
|
143
|
-
optional :fileName, :string, 4
|
144
|
-
optional :span, :message, 5, "gauge.messages.Span"
|
145
|
-
end
|
146
|
-
add_message "gauge.messages.UnsupportedMessageResponse" do
|
147
|
-
optional :message, :string, 1
|
148
|
-
end
|
149
|
-
add_message "gauge.messages.CacheFileRequest" do
|
150
|
-
optional :content, :string, 1
|
151
|
-
optional :filePath, :string, 2
|
152
|
-
optional :isClosed, :bool, 3
|
153
|
-
optional :status, :enum, 4, "gauge.messages.CacheFileRequest.FileStatus"
|
154
|
-
end
|
155
|
-
add_enum "gauge.messages.CacheFileRequest.FileStatus" do
|
156
|
-
value :CHANGED, 0
|
157
|
-
value :CLOSED, 1
|
158
|
-
value :CREATED, 2
|
159
|
-
value :DELETED, 3
|
160
|
-
value :OPENED, 4
|
161
|
-
end
|
162
|
-
add_message "gauge.messages.StepPositionsRequest" do
|
163
|
-
optional :filePath, :string, 1
|
164
|
-
end
|
165
|
-
add_message "gauge.messages.StepPositionsResponse" do
|
166
|
-
repeated :stepPositions, :message, 1, "gauge.messages.StepPositionsResponse.StepPosition"
|
167
|
-
optional :error, :string, 2
|
168
|
-
end
|
169
|
-
add_message "gauge.messages.StepPositionsResponse.StepPosition" do
|
170
|
-
optional :stepValue, :string, 1
|
171
|
-
optional :span, :message, 2, "gauge.messages.Span"
|
172
|
-
end
|
173
|
-
add_message "gauge.messages.ImplementationFileGlobPatternRequest" do
|
174
|
-
end
|
175
|
-
add_message "gauge.messages.ImplementationFileGlobPatternResponse" do
|
176
|
-
repeated :globPatterns, :string, 1
|
177
|
-
end
|
178
|
-
add_message "gauge.messages.ImplementationFileListRequest" do
|
179
|
-
end
|
180
|
-
add_message "gauge.messages.ImplementationFileListResponse" do
|
181
|
-
repeated :implementationFilePaths, :string, 1
|
182
|
-
end
|
183
|
-
add_message "gauge.messages.StubImplementationCodeRequest" do
|
184
|
-
optional :implementationFilePath, :string, 1
|
185
|
-
repeated :codes, :string, 2
|
186
|
-
end
|
187
|
-
add_message "gauge.messages.TextDiff" do
|
188
|
-
optional :span, :message, 1, "gauge.messages.Span"
|
189
|
-
optional :content, :string, 2
|
190
|
-
end
|
191
|
-
add_message "gauge.messages.FileDiff" do
|
192
|
-
optional :filePath, :string, 1
|
193
|
-
repeated :textDiffs, :message, 2, "gauge.messages.TextDiff"
|
194
|
-
end
|
195
|
-
add_message "gauge.messages.KeepAlive" do
|
196
|
-
optional :pluginId, :string, 1
|
197
|
-
end
|
198
|
-
add_message "gauge.messages.Empty" do
|
199
|
-
end
|
200
|
-
add_message "gauge.messages.Message" do
|
201
|
-
optional :messageType, :enum, 1, "gauge.messages.Message.MessageType"
|
202
|
-
optional :messageId, :int64, 2
|
203
|
-
optional :executionStartingRequest, :message, 3, "gauge.messages.ExecutionStartingRequest"
|
204
|
-
optional :specExecutionStartingRequest, :message, 4, "gauge.messages.SpecExecutionStartingRequest"
|
205
|
-
optional :specExecutionEndingRequest, :message, 5, "gauge.messages.SpecExecutionEndingRequest"
|
206
|
-
optional :scenarioExecutionStartingRequest, :message, 6, "gauge.messages.ScenarioExecutionStartingRequest"
|
207
|
-
optional :scenarioExecutionEndingRequest, :message, 7, "gauge.messages.ScenarioExecutionEndingRequest"
|
208
|
-
optional :stepExecutionStartingRequest, :message, 8, "gauge.messages.StepExecutionStartingRequest"
|
209
|
-
optional :stepExecutionEndingRequest, :message, 9, "gauge.messages.StepExecutionEndingRequest"
|
210
|
-
optional :executeStepRequest, :message, 10, "gauge.messages.ExecuteStepRequest"
|
211
|
-
optional :executionEndingRequest, :message, 11, "gauge.messages.ExecutionEndingRequest"
|
212
|
-
optional :stepValidateRequest, :message, 12, "gauge.messages.StepValidateRequest"
|
213
|
-
optional :stepValidateResponse, :message, 13, "gauge.messages.StepValidateResponse"
|
214
|
-
optional :executionStatusResponse, :message, 14, "gauge.messages.ExecutionStatusResponse"
|
215
|
-
optional :stepNamesRequest, :message, 15, "gauge.messages.StepNamesRequest"
|
216
|
-
optional :stepNamesResponse, :message, 16, "gauge.messages.StepNamesResponse"
|
217
|
-
optional :suiteExecutionResult, :message, 17, "gauge.messages.SuiteExecutionResult"
|
218
|
-
optional :killProcessRequest, :message, 18, "gauge.messages.KillProcessRequest"
|
219
|
-
optional :scenarioDataStoreInitRequest, :message, 19, "gauge.messages.ScenarioDataStoreInitRequest"
|
220
|
-
optional :specDataStoreInitRequest, :message, 20, "gauge.messages.SpecDataStoreInitRequest"
|
221
|
-
optional :suiteDataStoreInitRequest, :message, 21, "gauge.messages.SuiteDataStoreInitRequest"
|
222
|
-
optional :stepNameRequest, :message, 22, "gauge.messages.StepNameRequest"
|
223
|
-
optional :stepNameResponse, :message, 23, "gauge.messages.StepNameResponse"
|
224
|
-
optional :refactorRequest, :message, 24, "gauge.messages.RefactorRequest"
|
225
|
-
optional :refactorResponse, :message, 25, "gauge.messages.RefactorResponse"
|
226
|
-
optional :unsupportedMessageResponse, :message, 26, "gauge.messages.UnsupportedMessageResponse"
|
227
|
-
optional :cacheFileRequest, :message, 27, "gauge.messages.CacheFileRequest"
|
228
|
-
optional :stepPositionsRequest, :message, 28, "gauge.messages.StepPositionsRequest"
|
229
|
-
optional :stepPositionsResponse, :message, 29, "gauge.messages.StepPositionsResponse"
|
230
|
-
optional :implementationFileListRequest, :message, 30, "gauge.messages.ImplementationFileListRequest"
|
231
|
-
optional :implementationFileListResponse, :message, 31, "gauge.messages.ImplementationFileListResponse"
|
232
|
-
optional :stubImplementationCodeRequest, :message, 32, "gauge.messages.StubImplementationCodeRequest"
|
233
|
-
optional :fileDiff, :message, 33, "gauge.messages.FileDiff"
|
234
|
-
optional :implementationFileGlobPatternRequest, :message, 34, "gauge.messages.ImplementationFileGlobPatternRequest"
|
235
|
-
optional :implementationFileGlobPatternResponse, :message, 35, "gauge.messages.ImplementationFileGlobPatternResponse"
|
236
|
-
optional :suiteExecutionResultItem, :message, 36, "gauge.messages.SuiteExecutionResultItem"
|
237
|
-
optional :keepAlive, :message, 37, "gauge.messages.KeepAlive"
|
238
|
-
end
|
239
|
-
add_enum "gauge.messages.Message.MessageType" do
|
240
|
-
value :ExecutionStarting, 0
|
241
|
-
value :SpecExecutionStarting, 1
|
242
|
-
value :SpecExecutionEnding, 2
|
243
|
-
value :ScenarioExecutionStarting, 3
|
244
|
-
value :ScenarioExecutionEnding, 4
|
245
|
-
value :StepExecutionStarting, 5
|
246
|
-
value :StepExecutionEnding, 6
|
247
|
-
value :ExecuteStep, 7
|
248
|
-
value :ExecutionEnding, 8
|
249
|
-
value :StepValidateRequest, 9
|
250
|
-
value :StepValidateResponse, 10
|
251
|
-
value :ExecutionStatusResponse, 11
|
252
|
-
value :StepNamesRequest, 12
|
253
|
-
value :StepNamesResponse, 13
|
254
|
-
value :KillProcessRequest, 14
|
255
|
-
value :SuiteExecutionResult, 15
|
256
|
-
value :ScenarioDataStoreInit, 16
|
257
|
-
value :SpecDataStoreInit, 17
|
258
|
-
value :SuiteDataStoreInit, 18
|
259
|
-
value :StepNameRequest, 19
|
260
|
-
value :StepNameResponse, 20
|
261
|
-
value :RefactorRequest, 21
|
262
|
-
value :RefactorResponse, 22
|
263
|
-
value :UnsupportedMessageResponse, 23
|
264
|
-
value :CacheFileRequest, 24
|
265
|
-
value :StepPositionsRequest, 25
|
266
|
-
value :StepPositionsResponse, 26
|
267
|
-
value :ImplementationFileListRequest, 27
|
268
|
-
value :ImplementationFileListResponse, 28
|
269
|
-
value :StubImplementationCodeRequest, 29
|
270
|
-
value :FileDiff, 30
|
271
|
-
value :ImplementationFileGlobPatternRequest, 31
|
272
|
-
value :ImplementationFileGlobPatternResponse, 32
|
273
|
-
value :SuiteExecutionResultItem, 33
|
274
|
-
value :KeepAlive, 34
|
275
|
-
end
|
276
|
-
end
|
277
|
-
end
|
8
|
+
|
9
|
+
|
10
|
+
descriptor_data = "\n\x0emessages.proto\x12\x0egauge.messages\x1a\nspec.proto\"\x14\n\x12KillProcessRequest\"X\n\x17\x45xecutionStatusResponse\x12=\n\x0f\x65xecutionResult\x18\x01 \x01(\x0b\x32$.gauge.messages.ProtoExecutionResult\"\x9e\x01\n\x18\x45xecutionStartingRequest\x12;\n\x14\x63urrentExecutionInfo\x18\x01 \x01(\x0b\x32\x1d.gauge.messages.ExecutionInfo\x12\x35\n\x0bsuiteResult\x18\x02 \x01(\x0b\x32 .gauge.messages.ProtoSuiteResult\x12\x0e\n\x06stream\x18\x03 \x01(\x05\"\x9c\x01\n\x16\x45xecutionEndingRequest\x12;\n\x14\x63urrentExecutionInfo\x18\x01 \x01(\x0b\x32\x1d.gauge.messages.ExecutionInfo\x12\x35\n\x0bsuiteResult\x18\x02 \x01(\x0b\x32 .gauge.messages.ProtoSuiteResult\x12\x0e\n\x06stream\x18\x03 \x01(\x05\"\xa0\x01\n\x1cSpecExecutionStartingRequest\x12;\n\x14\x63urrentExecutionInfo\x18\x01 \x01(\x0b\x32\x1d.gauge.messages.ExecutionInfo\x12\x33\n\nspecResult\x18\x02 \x01(\x0b\x32\x1f.gauge.messages.ProtoSpecResult\x12\x0e\n\x06stream\x18\x03 \x01(\x05\"\x9e\x01\n\x1aSpecExecutionEndingRequest\x12;\n\x14\x63urrentExecutionInfo\x18\x01 \x01(\x0b\x32\x1d.gauge.messages.ExecutionInfo\x12\x33\n\nspecResult\x18\x02 \x01(\x0b\x32\x1f.gauge.messages.ProtoSpecResult\x12\x0e\n\x06stream\x18\x03 \x01(\x05\"\xac\x01\n ScenarioExecutionStartingRequest\x12;\n\x14\x63urrentExecutionInfo\x18\x01 \x01(\x0b\x32\x1d.gauge.messages.ExecutionInfo\x12;\n\x0escenarioResult\x18\x02 \x01(\x0b\x32#.gauge.messages.ProtoScenarioResult\x12\x0e\n\x06stream\x18\x03 \x01(\x05\"\xaa\x01\n\x1eScenarioExecutionEndingRequest\x12;\n\x14\x63urrentExecutionInfo\x18\x01 \x01(\x0b\x32\x1d.gauge.messages.ExecutionInfo\x12;\n\x0escenarioResult\x18\x02 \x01(\x0b\x32#.gauge.messages.ProtoScenarioResult\x12\x0e\n\x06stream\x18\x03 \x01(\x05\"\xa0\x01\n\x1cStepExecutionStartingRequest\x12;\n\x14\x63urrentExecutionInfo\x18\x01 \x01(\x0b\x32\x1d.gauge.messages.ExecutionInfo\x12\x33\n\nstepResult\x18\x02 \x01(\x0b\x32\x1f.gauge.messages.ProtoStepResult\x12\x0e\n\x06stream\x18\x03 \x01(\x05\"\x9e\x01\n\x1aStepExecutionEndingRequest\x12;\n\x14\x63urrentExecutionInfo\x18\x01 \x01(\x0b\x32\x1d.gauge.messages.ExecutionInfo\x12\x33\n\nstepResult\x18\x02 \x01(\x0b\x32\x1f.gauge.messages.ProtoStepResult\x12\x0e\n\x06stream\x18\x03 \x01(\x05\"\xa3\x01\n\x1f\x43onceptExecutionStartingRequest\x12;\n\x14\x63urrentExecutionInfo\x18\x01 \x01(\x0b\x32\x1d.gauge.messages.ExecutionInfo\x12\x33\n\nstepResult\x18\x02 \x01(\x0b\x32\x1f.gauge.messages.ProtoStepResult\x12\x0e\n\x06stream\x18\x03 \x01(\x05\"\xa1\x01\n\x1d\x43onceptExecutionEndingRequest\x12;\n\x14\x63urrentExecutionInfo\x18\x01 \x01(\x0b\x32\x1d.gauge.messages.ExecutionInfo\x12\x33\n\nstepResult\x18\x02 \x01(\x0b\x32\x1f.gauge.messages.ProtoStepResult\x12\x0e\n\x06stream\x18\x03 \x01(\x05\"3\n\x0c\x45xecutionArg\x12\x10\n\x08\x66lagName\x18\x01 \x01(\t\x12\x11\n\tflagValue\x18\x02 \x03(\t\"\xb6\x02\n\rExecutionInfo\x12-\n\x0b\x63urrentSpec\x18\x01 \x01(\x0b\x32\x18.gauge.messages.SpecInfo\x12\x35\n\x0f\x63urrentScenario\x18\x02 \x01(\x0b\x32\x1c.gauge.messages.ScenarioInfo\x12-\n\x0b\x63urrentStep\x18\x03 \x01(\x0b\x32\x18.gauge.messages.StepInfo\x12\x12\n\nstacktrace\x18\x04 \x01(\t\x12\x13\n\x0bprojectName\x18\x05 \x01(\t\x12\x33\n\rExecutionArgs\x18\x06 \x03(\x0b\x32\x1c.gauge.messages.ExecutionArg\x12 \n\x18numberOfExecutionStreams\x18\x07 \x01(\x05\x12\x10\n\x08runnerId\x18\x08 \x01(\x05\"J\n\x08SpecInfo\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x10\n\x08\x66ileName\x18\x02 \x01(\t\x12\x10\n\x08isFailed\x18\x03 \x01(\x08\x12\x0c\n\x04tags\x18\x04 \x03(\t\"r\n\x0cScenarioInfo\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x10\n\x08isFailed\x18\x02 \x01(\x08\x12\x0c\n\x04tags\x18\x03 \x03(\t\x12\x34\n\x07retries\x18\x04 \x01(\x0b\x32#.gauge.messages.ScenarioRetriesInfo\"?\n\x13ScenarioRetriesInfo\x12\x12\n\nmaxRetries\x18\x01 \x01(\x05\x12\x14\n\x0c\x63urrentRetry\x18\x02 \x01(\x05\"x\n\x08StepInfo\x12\x30\n\x04step\x18\x01 \x01(\x0b\x32\".gauge.messages.ExecuteStepRequest\x12\x10\n\x08isFailed\x18\x02 \x01(\x08\x12\x12\n\nstackTrace\x18\x03 \x01(\t\x12\x14\n\x0c\x65rrorMessage\x18\x04 \x01(\t\"\x9c\x01\n\x12\x45xecuteStepRequest\x12\x16\n\x0e\x61\x63tualStepText\x18\x01 \x01(\t\x12\x16\n\x0eparsedStepText\x18\x02 \x01(\t\x12\x17\n\x0fscenarioFailing\x18\x03 \x01(\x08\x12-\n\nparameters\x18\x04 \x03(\x0b\x32\x19.gauge.messages.Parameter\x12\x0e\n\x06stream\x18\x05 \x01(\x05\"v\n\x13StepValidateRequest\x12\x10\n\x08stepText\x18\x01 \x01(\t\x12\x1a\n\x12numberOfParameters\x18\x02 \x01(\x05\x12\x31\n\tstepValue\x18\x03 \x01(\x0b\x32\x1e.gauge.messages.ProtoStepValue\"\xe7\x01\n\x14StepValidateResponse\x12\x0f\n\x07isValid\x18\x01 \x01(\x08\x12\x14\n\x0c\x65rrorMessage\x18\x02 \x01(\t\x12\x41\n\terrorType\x18\x03 \x01(\x0e\x32..gauge.messages.StepValidateResponse.ErrorType\x12\x12\n\nsuggestion\x18\x04 \x01(\t\"Q\n\tErrorType\x12!\n\x1dSTEP_IMPLEMENTATION_NOT_FOUND\x10\x00\x12!\n\x1d\x44UPLICATE_STEP_IMPLEMENTATION\x10\x01\"M\n\x14SuiteExecutionResult\x12\x35\n\x0bsuiteResult\x18\x01 \x01(\x0b\x32 .gauge.messages.ProtoSuiteResult\"I\n\x18SuiteExecutionResultItem\x12-\n\nresultItem\x18\x01 \x01(\x0b\x32\x19.gauge.messages.ProtoItem\"\x12\n\x10StepNamesRequest\"\"\n\x11StepNamesResponse\x12\r\n\x05steps\x18\x01 \x03(\t\".\n\x1cScenarioDataStoreInitRequest\x12\x0e\n\x06stream\x18\x01 \x01(\x05\"*\n\x18SpecDataStoreInitRequest\x12\x0e\n\x06stream\x18\x01 \x01(\x05\"+\n\x19SuiteDataStoreInitRequest\x12\x0e\n\x06stream\x18\x01 \x01(\x05\"=\n\x11ParameterPosition\x12\x13\n\x0boldPosition\x18\x01 \x01(\x05\x12\x13\n\x0bnewPosition\x18\x02 \x01(\x05\"\xcd\x01\n\x0fRefactorRequest\x12\x34\n\x0coldStepValue\x18\x01 \x01(\x0b\x32\x1e.gauge.messages.ProtoStepValue\x12\x34\n\x0cnewStepValue\x18\x02 \x01(\x0b\x32\x1e.gauge.messages.ProtoStepValue\x12\x39\n\x0eparamPositions\x18\x03 \x03(\x0b\x32!.gauge.messages.ParameterPosition\x12\x13\n\x0bsaveChanges\x18\x04 \x01(\x08\"a\n\x0b\x46ileChanges\x12\x10\n\x08\x66ileName\x18\x01 \x01(\t\x12\x17\n\x0b\x66ileContent\x18\x02 \x01(\tB\x02\x18\x01\x12\'\n\x05\x64iffs\x18\x03 \x03(\x0b\x32\x18.gauge.messages.TextDiff\"z\n\x10RefactorResponse\x12\x0f\n\x07success\x18\x01 \x01(\x08\x12\r\n\x05\x65rror\x18\x02 \x01(\t\x12\x14\n\x0c\x66ilesChanged\x18\x03 \x03(\t\x12\x30\n\x0b\x66ileChanges\x18\x04 \x03(\x0b\x32\x1b.gauge.messages.FileChanges\"$\n\x0fStepNameRequest\x12\x11\n\tstepValue\x18\x01 \x01(\t\"\x97\x01\n\x10StepNameResponse\x12\x15\n\risStepPresent\x18\x01 \x01(\x08\x12\x10\n\x08stepName\x18\x02 \x03(\t\x12\x10\n\x08hasAlias\x18\x03 \x01(\x08\x12\x10\n\x08\x66ileName\x18\x04 \x01(\t\x12\"\n\x04span\x18\x05 \x01(\x0b\x32\x14.gauge.messages.Span\x12\x12\n\nisExternal\x18\x06 \x01(\x08\"-\n\x1aUnsupportedMessageResponse\x12\x0f\n\x07message\x18\x01 \x01(\t\"\xd1\x01\n\x10\x43\x61\x63heFileRequest\x12\x0f\n\x07\x63ontent\x18\x01 \x01(\t\x12\x10\n\x08\x66ilePath\x18\x02 \x01(\t\x12\x10\n\x08isClosed\x18\x03 \x01(\x08\x12;\n\x06status\x18\x04 \x01(\x0e\x32+.gauge.messages.CacheFileRequest.FileStatus\"K\n\nFileStatus\x12\x0b\n\x07\x43HANGED\x10\x00\x12\n\n\x06\x43LOSED\x10\x01\x12\x0b\n\x07\x43REATED\x10\x02\x12\x0b\n\x07\x44\x45LETED\x10\x03\x12\n\n\x06OPENED\x10\x04\"(\n\x14StepPositionsRequest\x12\x10\n\x08\x66ilePath\x18\x01 \x01(\t\"\xb8\x01\n\x15StepPositionsResponse\x12I\n\rstepPositions\x18\x01 \x03(\x0b\x32\x32.gauge.messages.StepPositionsResponse.StepPosition\x12\r\n\x05\x65rror\x18\x02 \x01(\t\x1a\x45\n\x0cStepPosition\x12\x11\n\tstepValue\x18\x01 \x01(\t\x12\"\n\x04span\x18\x02 \x01(\x0b\x32\x14.gauge.messages.Span\"&\n$ImplementationFileGlobPatternRequest\"=\n%ImplementationFileGlobPatternResponse\x12\x14\n\x0cglobPatterns\x18\x01 \x03(\t\"\x1f\n\x1dImplementationFileListRequest\"A\n\x1eImplementationFileListResponse\x12\x1f\n\x17implementationFilePaths\x18\x01 \x03(\t\"N\n\x1dStubImplementationCodeRequest\x12\x1e\n\x16implementationFilePath\x18\x01 \x01(\t\x12\r\n\x05\x63odes\x18\x02 \x03(\t\"?\n\x08TextDiff\x12\"\n\x04span\x18\x01 \x01(\x0b\x32\x14.gauge.messages.Span\x12\x0f\n\x07\x63ontent\x18\x02 \x01(\t\"I\n\x08\x46ileDiff\x12\x10\n\x08\x66ilePath\x18\x01 \x01(\t\x12+\n\ttextDiffs\x18\x02 \x03(\x0b\x32\x18.gauge.messages.TextDiff\"\x1d\n\tKeepAlive\x12\x10\n\x08pluginId\x18\x01 \x01(\t\"\xa9\x01\n\x0bSpecDetails\x12\x37\n\x07\x64\x65tails\x18\x01 \x03(\x0b\x32&.gauge.messages.SpecDetails.SpecDetail\x1a\x61\n\nSpecDetail\x12\'\n\x04spec\x18\x01 \x01(\x0b\x32\x19.gauge.messages.ProtoSpec\x12*\n\x0bparseErrors\x18\x02 \x03(\x0b\x32\x15.gauge.messages.Error\"\x07\n\x05\x45mpty\"\xe7\x1d\n\x07Message\x12\x38\n\x0bmessageType\x18\x01 \x01(\x0e\x32#.gauge.messages.Message.MessageType\x12\x11\n\tmessageId\x18\x02 \x01(\x03\x12J\n\x18\x65xecutionStartingRequest\x18\x03 \x01(\x0b\x32(.gauge.messages.ExecutionStartingRequest\x12R\n\x1cspecExecutionStartingRequest\x18\x04 \x01(\x0b\x32,.gauge.messages.SpecExecutionStartingRequest\x12N\n\x1aspecExecutionEndingRequest\x18\x05 \x01(\x0b\x32*.gauge.messages.SpecExecutionEndingRequest\x12Z\n scenarioExecutionStartingRequest\x18\x06 \x01(\x0b\x32\x30.gauge.messages.ScenarioExecutionStartingRequest\x12V\n\x1escenarioExecutionEndingRequest\x18\x07 \x01(\x0b\x32..gauge.messages.ScenarioExecutionEndingRequest\x12R\n\x1cstepExecutionStartingRequest\x18\x08 \x01(\x0b\x32,.gauge.messages.StepExecutionStartingRequest\x12N\n\x1astepExecutionEndingRequest\x18\t \x01(\x0b\x32*.gauge.messages.StepExecutionEndingRequest\x12>\n\x12\x65xecuteStepRequest\x18\n \x01(\x0b\x32\".gauge.messages.ExecuteStepRequest\x12\x46\n\x16\x65xecutionEndingRequest\x18\x0b \x01(\x0b\x32&.gauge.messages.ExecutionEndingRequest\x12@\n\x13stepValidateRequest\x18\x0c \x01(\x0b\x32#.gauge.messages.StepValidateRequest\x12\x42\n\x14stepValidateResponse\x18\r \x01(\x0b\x32$.gauge.messages.StepValidateResponse\x12H\n\x17\x65xecutionStatusResponse\x18\x0e \x01(\x0b\x32\'.gauge.messages.ExecutionStatusResponse\x12:\n\x10stepNamesRequest\x18\x0f \x01(\x0b\x32 .gauge.messages.StepNamesRequest\x12<\n\x11stepNamesResponse\x18\x10 \x01(\x0b\x32!.gauge.messages.StepNamesResponse\x12\x42\n\x14suiteExecutionResult\x18\x11 \x01(\x0b\x32$.gauge.messages.SuiteExecutionResult\x12>\n\x12killProcessRequest\x18\x12 \x01(\x0b\x32\".gauge.messages.KillProcessRequest\x12R\n\x1cscenarioDataStoreInitRequest\x18\x13 \x01(\x0b\x32,.gauge.messages.ScenarioDataStoreInitRequest\x12J\n\x18specDataStoreInitRequest\x18\x14 \x01(\x0b\x32(.gauge.messages.SpecDataStoreInitRequest\x12L\n\x19suiteDataStoreInitRequest\x18\x15 \x01(\x0b\x32).gauge.messages.SuiteDataStoreInitRequest\x12\x38\n\x0fstepNameRequest\x18\x16 \x01(\x0b\x32\x1f.gauge.messages.StepNameRequest\x12:\n\x10stepNameResponse\x18\x17 \x01(\x0b\x32 .gauge.messages.StepNameResponse\x12\x38\n\x0frefactorRequest\x18\x18 \x01(\x0b\x32\x1f.gauge.messages.RefactorRequest\x12:\n\x10refactorResponse\x18\x19 \x01(\x0b\x32 .gauge.messages.RefactorResponse\x12N\n\x1aunsupportedMessageResponse\x18\x1a \x01(\x0b\x32*.gauge.messages.UnsupportedMessageResponse\x12:\n\x10\x63\x61\x63heFileRequest\x18\x1b \x01(\x0b\x32 .gauge.messages.CacheFileRequest\x12\x42\n\x14stepPositionsRequest\x18\x1c \x01(\x0b\x32$.gauge.messages.StepPositionsRequest\x12\x44\n\x15stepPositionsResponse\x18\x1d \x01(\x0b\x32%.gauge.messages.StepPositionsResponse\x12T\n\x1dimplementationFileListRequest\x18\x1e \x01(\x0b\x32-.gauge.messages.ImplementationFileListRequest\x12V\n\x1eimplementationFileListResponse\x18\x1f \x01(\x0b\x32..gauge.messages.ImplementationFileListResponse\x12T\n\x1dstubImplementationCodeRequest\x18 \x01(\x0b\x32-.gauge.messages.StubImplementationCodeRequest\x12*\n\x08\x66ileDiff\x18! \x01(\x0b\x32\x18.gauge.messages.FileDiff\x12\x62\n$implementationFileGlobPatternRequest\x18\" \x01(\x0b\x32\x34.gauge.messages.ImplementationFileGlobPatternRequest\x12\x64\n%implementationFileGlobPatternResponse\x18# \x01(\x0b\x32\x35.gauge.messages.ImplementationFileGlobPatternResponse\x12J\n\x18suiteExecutionResultItem\x18$ \x01(\x0b\x32(.gauge.messages.SuiteExecutionResultItem\x12,\n\tkeepAlive\x18% \x01(\x0b\x32\x19.gauge.messages.KeepAlive\x12X\n\x1f\x63onceptExecutionStartingRequest\x18& \x01(\x0b\x32/.gauge.messages.ConceptExecutionStartingRequest\x12T\n\x1d\x63onceptExecutionEndingRequest\x18\' \x01(\x0b\x32-.gauge.messages.ConceptExecutionEndingRequest\"\xdc\x07\n\x0bMessageType\x12\x15\n\x11\x45xecutionStarting\x10\x00\x12\x19\n\x15SpecExecutionStarting\x10\x01\x12\x17\n\x13SpecExecutionEnding\x10\x02\x12\x1d\n\x19ScenarioExecutionStarting\x10\x03\x12\x1b\n\x17ScenarioExecutionEnding\x10\x04\x12\x19\n\x15StepExecutionStarting\x10\x05\x12\x17\n\x13StepExecutionEnding\x10\x06\x12\x0f\n\x0b\x45xecuteStep\x10\x07\x12\x13\n\x0f\x45xecutionEnding\x10\x08\x12\x17\n\x13StepValidateRequest\x10\t\x12\x18\n\x14StepValidateResponse\x10\n\x12\x1b\n\x17\x45xecutionStatusResponse\x10\x0b\x12\x14\n\x10StepNamesRequest\x10\x0c\x12\x15\n\x11StepNamesResponse\x10\r\x12\x16\n\x12KillProcessRequest\x10\x0e\x12\x18\n\x14SuiteExecutionResult\x10\x0f\x12\x19\n\x15ScenarioDataStoreInit\x10\x10\x12\x15\n\x11SpecDataStoreInit\x10\x11\x12\x16\n\x12SuiteDataStoreInit\x10\x12\x12\x13\n\x0fStepNameRequest\x10\x13\x12\x14\n\x10StepNameResponse\x10\x14\x12\x13\n\x0fRefactorRequest\x10\x15\x12\x14\n\x10RefactorResponse\x10\x16\x12\x1e\n\x1aUnsupportedMessageResponse\x10\x17\x12\x14\n\x10\x43\x61\x63heFileRequest\x10\x18\x12\x18\n\x14StepPositionsRequest\x10\x19\x12\x19\n\x15StepPositionsResponse\x10\x1a\x12!\n\x1dImplementationFileListRequest\x10\x1b\x12\"\n\x1eImplementationFileListResponse\x10\x1c\x12!\n\x1dStubImplementationCodeRequest\x10\x1d\x12\x0c\n\x08\x46ileDiff\x10\x1e\x12(\n$ImplementationFileGlobPatternRequest\x10\x1f\x12)\n%ImplementationFileGlobPatternResponse\x10 \x12\x1c\n\x18SuiteExecutionResultItem\x10!\x12\r\n\tKeepAlive\x10\"\x12\x1c\n\x18\x43onceptExecutionStarting\x10#\x12\x1a\n\x16\x43onceptExecutionEnding\x10$B\\\n\x16\x63om.thoughtworks.gaugeZ1github.com/getgauge/gauge-proto/go/gauge_messages\xaa\x02\x0eGauge.Messagesb\x06proto3"
|
11
|
+
|
12
|
+
pool = Google::Protobuf::DescriptorPool.generated_pool
|
13
|
+
pool.add_serialized_file(descriptor_data)
|
278
14
|
|
279
15
|
module Gauge
|
280
16
|
module Messages
|
281
|
-
KillProcessRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.KillProcessRequest").msgclass
|
282
|
-
ExecutionStatusResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ExecutionStatusResponse").msgclass
|
283
|
-
ExecutionStartingRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ExecutionStartingRequest").msgclass
|
284
|
-
ExecutionEndingRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ExecutionEndingRequest").msgclass
|
285
|
-
SpecExecutionStartingRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.SpecExecutionStartingRequest").msgclass
|
286
|
-
SpecExecutionEndingRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.SpecExecutionEndingRequest").msgclass
|
287
|
-
ScenarioExecutionStartingRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ScenarioExecutionStartingRequest").msgclass
|
288
|
-
ScenarioExecutionEndingRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ScenarioExecutionEndingRequest").msgclass
|
289
|
-
StepExecutionStartingRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.StepExecutionStartingRequest").msgclass
|
290
|
-
StepExecutionEndingRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.StepExecutionEndingRequest").msgclass
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
17
|
+
KillProcessRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.KillProcessRequest").msgclass
|
18
|
+
ExecutionStatusResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ExecutionStatusResponse").msgclass
|
19
|
+
ExecutionStartingRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ExecutionStartingRequest").msgclass
|
20
|
+
ExecutionEndingRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ExecutionEndingRequest").msgclass
|
21
|
+
SpecExecutionStartingRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.SpecExecutionStartingRequest").msgclass
|
22
|
+
SpecExecutionEndingRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.SpecExecutionEndingRequest").msgclass
|
23
|
+
ScenarioExecutionStartingRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ScenarioExecutionStartingRequest").msgclass
|
24
|
+
ScenarioExecutionEndingRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ScenarioExecutionEndingRequest").msgclass
|
25
|
+
StepExecutionStartingRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.StepExecutionStartingRequest").msgclass
|
26
|
+
StepExecutionEndingRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.StepExecutionEndingRequest").msgclass
|
27
|
+
ConceptExecutionStartingRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ConceptExecutionStartingRequest").msgclass
|
28
|
+
ConceptExecutionEndingRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ConceptExecutionEndingRequest").msgclass
|
29
|
+
ExecutionArg = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ExecutionArg").msgclass
|
30
|
+
ExecutionInfo = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ExecutionInfo").msgclass
|
31
|
+
SpecInfo = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.SpecInfo").msgclass
|
32
|
+
ScenarioInfo = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ScenarioInfo").msgclass
|
33
|
+
ScenarioRetriesInfo = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ScenarioRetriesInfo").msgclass
|
34
|
+
StepInfo = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.StepInfo").msgclass
|
35
|
+
ExecuteStepRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ExecuteStepRequest").msgclass
|
36
|
+
StepValidateRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.StepValidateRequest").msgclass
|
37
|
+
StepValidateResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.StepValidateResponse").msgclass
|
38
|
+
StepValidateResponse::ErrorType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.StepValidateResponse.ErrorType").enummodule
|
39
|
+
SuiteExecutionResult = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.SuiteExecutionResult").msgclass
|
40
|
+
SuiteExecutionResultItem = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.SuiteExecutionResultItem").msgclass
|
41
|
+
StepNamesRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.StepNamesRequest").msgclass
|
42
|
+
StepNamesResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.StepNamesResponse").msgclass
|
43
|
+
ScenarioDataStoreInitRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ScenarioDataStoreInitRequest").msgclass
|
44
|
+
SpecDataStoreInitRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.SpecDataStoreInitRequest").msgclass
|
45
|
+
SuiteDataStoreInitRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.SuiteDataStoreInitRequest").msgclass
|
46
|
+
ParameterPosition = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ParameterPosition").msgclass
|
47
|
+
RefactorRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.RefactorRequest").msgclass
|
48
|
+
FileChanges = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.FileChanges").msgclass
|
49
|
+
RefactorResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.RefactorResponse").msgclass
|
50
|
+
StepNameRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.StepNameRequest").msgclass
|
51
|
+
StepNameResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.StepNameResponse").msgclass
|
52
|
+
UnsupportedMessageResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.UnsupportedMessageResponse").msgclass
|
53
|
+
CacheFileRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.CacheFileRequest").msgclass
|
54
|
+
CacheFileRequest::FileStatus = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.CacheFileRequest.FileStatus").enummodule
|
55
|
+
StepPositionsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.StepPositionsRequest").msgclass
|
56
|
+
StepPositionsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.StepPositionsResponse").msgclass
|
57
|
+
StepPositionsResponse::StepPosition = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.StepPositionsResponse.StepPosition").msgclass
|
58
|
+
ImplementationFileGlobPatternRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ImplementationFileGlobPatternRequest").msgclass
|
59
|
+
ImplementationFileGlobPatternResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ImplementationFileGlobPatternResponse").msgclass
|
60
|
+
ImplementationFileListRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ImplementationFileListRequest").msgclass
|
61
|
+
ImplementationFileListResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ImplementationFileListResponse").msgclass
|
62
|
+
StubImplementationCodeRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.StubImplementationCodeRequest").msgclass
|
63
|
+
TextDiff = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.TextDiff").msgclass
|
64
|
+
FileDiff = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.FileDiff").msgclass
|
65
|
+
KeepAlive = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.KeepAlive").msgclass
|
66
|
+
SpecDetails = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.SpecDetails").msgclass
|
67
|
+
SpecDetails::SpecDetail = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.SpecDetails.SpecDetail").msgclass
|
68
|
+
Empty = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.Empty").msgclass
|
69
|
+
Message = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.Message").msgclass
|
70
|
+
Message::MessageType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.Message.MessageType").enummodule
|
330
71
|
end
|
331
72
|
end
|
data/lib/services_pb.rb
CHANGED
@@ -1,13 +1,16 @@
|
|
1
|
+
# frozen_string_literal: true
|
1
2
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
3
|
# source: services.proto
|
3
4
|
|
4
5
|
require 'google/protobuf'
|
5
6
|
|
6
7
|
require 'messages_pb'
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
8
|
+
|
9
|
+
|
10
|
+
descriptor_data = "\n\x0eservices.proto\x12\x0egauge.messages\x1a\x0emessages.proto2\xe7\x12\n\x06Runner\x12Y\n\x0cValidateStep\x12#.gauge.messages.StepValidateRequest\x1a$.gauge.messages.StepValidateResponse\x12n\n\x18InitializeSuiteDataStore\x12).gauge.messages.SuiteDataStoreInitRequest\x1a\'.gauge.messages.ExecutionStatusResponse\x12\x63\n\x0eStartExecution\x12(.gauge.messages.ExecutionStartingRequest\x1a\'.gauge.messages.ExecutionStatusResponse\x12l\n\x17InitializeSpecDataStore\x12(.gauge.messages.SpecDataStoreInitRequest\x1a\'.gauge.messages.ExecutionStatusResponse\x12k\n\x12StartSpecExecution\x12,.gauge.messages.SpecExecutionStartingRequest\x1a\'.gauge.messages.ExecutionStatusResponse\x12t\n\x1bInitializeScenarioDataStore\x12,.gauge.messages.ScenarioDataStoreInitRequest\x1a\'.gauge.messages.ExecutionStatusResponse\x12s\n\x16StartScenarioExecution\x12\x30.gauge.messages.ScenarioExecutionStartingRequest\x1a\'.gauge.messages.ExecutionStatusResponse\x12k\n\x12StartStepExecution\x12,.gauge.messages.StepExecutionStartingRequest\x1a\'.gauge.messages.ExecutionStatusResponse\x12Z\n\x0b\x45xecuteStep\x12\".gauge.messages.ExecuteStepRequest\x1a\'.gauge.messages.ExecutionStatusResponse\x12j\n\x13\x46inishStepExecution\x12*.gauge.messages.StepExecutionEndingRequest\x1a\'.gauge.messages.ExecutionStatusResponse\x12r\n\x17\x46inishScenarioExecution\x12..gauge.messages.ScenarioExecutionEndingRequest\x1a\'.gauge.messages.ExecutionStatusResponse\x12j\n\x13\x46inishSpecExecution\x12*.gauge.messages.SpecExecutionEndingRequest\x1a\'.gauge.messages.ExecutionStatusResponse\x12\x62\n\x0f\x46inishExecution\x12&.gauge.messages.ExecutionEndingRequest\x1a\'.gauge.messages.ExecutionStatusResponse\x12\x44\n\tCacheFile\x12 .gauge.messages.CacheFileRequest\x1a\x15.gauge.messages.Empty\x12P\n\x0bGetStepName\x12\x1f.gauge.messages.StepNameRequest\x1a .gauge.messages.StepNameResponse\x12_\n\x0fGetGlobPatterns\x12\x15.gauge.messages.Empty\x1a\x35.gauge.messages.ImplementationFileGlobPatternResponse\x12S\n\x0cGetStepNames\x12 .gauge.messages.StepNamesRequest\x1a!.gauge.messages.StepNamesResponse\x12_\n\x10GetStepPositions\x12$.gauge.messages.StepPositionsRequest\x1a%.gauge.messages.StepPositionsResponse\x12_\n\x16GetImplementationFiles\x12\x15.gauge.messages.Empty\x1a..gauge.messages.ImplementationFileListResponse\x12X\n\rImplementStub\x12-.gauge.messages.StubImplementationCodeRequest\x1a\x18.gauge.messages.FileDiff\x12M\n\x08Refactor\x12\x1f.gauge.messages.RefactorRequest\x1a .gauge.messages.RefactorResponse\x12\x41\n\x04Kill\x12\".gauge.messages.KillProcessRequest\x1a\x15.gauge.messages.Empty\x12z\n\x1eNotifyConceptExecutionStarting\x12/.gauge.messages.ConceptExecutionStartingRequest\x1a\'.gauge.messages.ExecutionStatusResponse\x12v\n\x1cNotifyConceptExecutionEnding\x12-.gauge.messages.ConceptExecutionEndingRequest\x1a\'.gauge.messages.ExecutionStatusResponse2\xff\x08\n\x08Reporter\x12Z\n\x17NotifyExecutionStarting\x12(.gauge.messages.ExecutionStartingRequest\x1a\x15.gauge.messages.Empty\x12\x62\n\x1bNotifySpecExecutionStarting\x12,.gauge.messages.SpecExecutionStartingRequest\x1a\x15.gauge.messages.Empty\x12j\n\x1fNotifyScenarioExecutionStarting\x12\x30.gauge.messages.ScenarioExecutionStartingRequest\x1a\x15.gauge.messages.Empty\x12h\n\x1eNotifyConceptExecutionStarting\x12/.gauge.messages.ConceptExecutionStartingRequest\x1a\x15.gauge.messages.Empty\x12\x64\n\x1cNotifyConceptExecutionEnding\x12-.gauge.messages.ConceptExecutionEndingRequest\x1a\x15.gauge.messages.Empty\x12\x62\n\x1bNotifyStepExecutionStarting\x12,.gauge.messages.StepExecutionStartingRequest\x1a\x15.gauge.messages.Empty\x12^\n\x19NotifyStepExecutionEnding\x12*.gauge.messages.StepExecutionEndingRequest\x1a\x15.gauge.messages.Empty\x12\x66\n\x1dNotifyScenarioExecutionEnding\x12..gauge.messages.ScenarioExecutionEndingRequest\x1a\x15.gauge.messages.Empty\x12^\n\x19NotifySpecExecutionEnding\x12*.gauge.messages.SpecExecutionEndingRequest\x1a\x15.gauge.messages.Empty\x12V\n\x15NotifyExecutionEnding\x12&.gauge.messages.ExecutionEndingRequest\x1a\x15.gauge.messages.Empty\x12P\n\x11NotifySuiteResult\x12$.gauge.messages.SuiteExecutionResult\x1a\x15.gauge.messages.Empty\x12\x41\n\x04Kill\x12\".gauge.messages.KillProcessRequest\x1a\x15.gauge.messages.Empty2\x93\x01\n\nDocumenter\x12\x42\n\x0cGenerateDocs\x12\x1b.gauge.messages.SpecDetails\x1a\x15.gauge.messages.Empty\x12\x41\n\x04Kill\x12\".gauge.messages.KillProcessRequest\x1a\x15.gauge.messages.EmptyB\\\n\x16\x63om.thoughtworks.gaugeZ1github.com/getgauge/gauge-proto/go/gauge_messages\xaa\x02\x0eGauge.Messagesb\x06proto3"
|
11
|
+
|
12
|
+
pool = Google::Protobuf::DescriptorPool.generated_pool
|
13
|
+
pool.add_serialized_file(descriptor_data)
|
11
14
|
|
12
15
|
module Gauge
|
13
16
|
module Messages
|
data/lib/services_services_pb.rb
CHANGED
@@ -1,5 +1,12 @@
|
|
1
1
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
2
|
# Source: services.proto for package 'gauge.messages'
|
3
|
+
# Original file comments:
|
4
|
+
# ----------------------------------------------------------------
|
5
|
+
# Copyright (c) ThoughtWorks, Inc.
|
6
|
+
# Licensed under the Apache License, Version 2.0
|
7
|
+
# See LICENSE in the project root for license information.
|
8
|
+
# ----------------------------------------------------------------
|
9
|
+
#
|
3
10
|
|
4
11
|
require 'grpc'
|
5
12
|
require 'services_pb'
|
@@ -9,7 +16,7 @@ module Gauge
|
|
9
16
|
module Runner
|
10
17
|
class Service
|
11
18
|
|
12
|
-
include GRPC::GenericService
|
19
|
+
include ::GRPC::GenericService
|
13
20
|
|
14
21
|
self.marshal_class_method = :encode
|
15
22
|
self.unmarshal_class_method = :decode
|
@@ -18,91 +25,99 @@ module Gauge
|
|
18
25
|
# ValidateStep is a RPC to validate a given step.
|
19
26
|
#
|
20
27
|
# Accepts a StepValidateRequest message and returns a StepValidateResponse message
|
21
|
-
rpc :ValidateStep, StepValidateRequest, StepValidateResponse
|
28
|
+
rpc :ValidateStep, ::Gauge::Messages::StepValidateRequest, ::Gauge::Messages::StepValidateResponse
|
22
29
|
# SuiteDataStoreInit is a RPC to initialize the suite level data store.
|
23
30
|
#
|
24
31
|
# Accepts a Empty message and returns a ExecutionStatusResponse message
|
25
|
-
rpc :InitializeSuiteDataStore,
|
32
|
+
rpc :InitializeSuiteDataStore, ::Gauge::Messages::SuiteDataStoreInitRequest, ::Gauge::Messages::ExecutionStatusResponse
|
26
33
|
# ExecutionStarting is a RPC to tell runner to execute Suite level hooks.
|
27
34
|
#
|
28
35
|
# Accepts a ExecutionStartingRequest message and returns a ExecutionStatusResponse message
|
29
|
-
rpc :StartExecution, ExecutionStartingRequest, ExecutionStatusResponse
|
36
|
+
rpc :StartExecution, ::Gauge::Messages::ExecutionStartingRequest, ::Gauge::Messages::ExecutionStatusResponse
|
30
37
|
# SpecDataStoreInit is a RPC to initialize the spec level data store.
|
31
38
|
#
|
32
39
|
# Accepts a Empty message and returns a ExecutionStatusResponse message
|
33
|
-
rpc :InitializeSpecDataStore,
|
40
|
+
rpc :InitializeSpecDataStore, ::Gauge::Messages::SpecDataStoreInitRequest, ::Gauge::Messages::ExecutionStatusResponse
|
34
41
|
# SpecExecutionStarting is a RPC to tell runner to execute spec level hooks.
|
35
42
|
#
|
36
43
|
# Accepts a SpecExecutionStartingRequest message and returns a ExecutionStatusResponse message
|
37
|
-
rpc :StartSpecExecution, SpecExecutionStartingRequest, ExecutionStatusResponse
|
44
|
+
rpc :StartSpecExecution, ::Gauge::Messages::SpecExecutionStartingRequest, ::Gauge::Messages::ExecutionStatusResponse
|
38
45
|
# ScenarioDataStoreInit is a RPC to initialize the scenario level data store.
|
39
46
|
#
|
40
47
|
# Accepts a Empty message and returns a ExecutionStatusResponse message
|
41
|
-
rpc :InitializeScenarioDataStore,
|
48
|
+
rpc :InitializeScenarioDataStore, ::Gauge::Messages::ScenarioDataStoreInitRequest, ::Gauge::Messages::ExecutionStatusResponse
|
42
49
|
# ScenarioExecutionStarting is a RPC to tell runner to execute scenario level hooks.
|
43
50
|
#
|
44
51
|
# Accepts a ScenarioExecutionStartingRequest message and returns a ExecutionStatusResponse message
|
45
|
-
rpc :StartScenarioExecution, ScenarioExecutionStartingRequest, ExecutionStatusResponse
|
52
|
+
rpc :StartScenarioExecution, ::Gauge::Messages::ScenarioExecutionStartingRequest, ::Gauge::Messages::ExecutionStatusResponse
|
46
53
|
# StepExecutionStarting is a RPC to tell runner to execute step level hooks.
|
47
54
|
#
|
48
55
|
# Accepts a StepExecutionStartingRequest message and returns a ExecutionStatusResponse message
|
49
|
-
rpc :StartStepExecution, StepExecutionStartingRequest, ExecutionStatusResponse
|
56
|
+
rpc :StartStepExecution, ::Gauge::Messages::StepExecutionStartingRequest, ::Gauge::Messages::ExecutionStatusResponse
|
50
57
|
# ExecuteStep is a RPC to tell runner to execute a step .
|
51
58
|
#
|
52
59
|
# Accepts a ExecuteStepRequest message and returns a ExecutionStatusResponse message
|
53
|
-
rpc :ExecuteStep, ExecuteStepRequest, ExecutionStatusResponse
|
60
|
+
rpc :ExecuteStep, ::Gauge::Messages::ExecuteStepRequest, ::Gauge::Messages::ExecutionStatusResponse
|
54
61
|
# StepExecutionEnding is a RPC to tell runner to execute step level hooks.
|
55
62
|
#
|
56
63
|
# Accepts a StepExecutionEndingRequest message and returns a ExecutionStatusResponse message
|
57
|
-
rpc :FinishStepExecution, StepExecutionEndingRequest, ExecutionStatusResponse
|
64
|
+
rpc :FinishStepExecution, ::Gauge::Messages::StepExecutionEndingRequest, ::Gauge::Messages::ExecutionStatusResponse
|
58
65
|
# ScenarioExecutionEnding is a RPC to tell runner to execute Scenario level hooks.
|
59
66
|
#
|
60
67
|
# Accepts a ScenarioExecutionEndingRequest message and returns a ExecutionStatusResponse message
|
61
|
-
rpc :FinishScenarioExecution, ScenarioExecutionEndingRequest, ExecutionStatusResponse
|
68
|
+
rpc :FinishScenarioExecution, ::Gauge::Messages::ScenarioExecutionEndingRequest, ::Gauge::Messages::ExecutionStatusResponse
|
62
69
|
# SpecExecutionEnding is a RPC to tell runner to execute spec level hooks.
|
63
70
|
#
|
64
71
|
# Accepts a SpecExecutionEndingRequest message and returns a ExecutionStatusResponse message
|
65
|
-
rpc :FinishSpecExecution, SpecExecutionEndingRequest, ExecutionStatusResponse
|
72
|
+
rpc :FinishSpecExecution, ::Gauge::Messages::SpecExecutionEndingRequest, ::Gauge::Messages::ExecutionStatusResponse
|
66
73
|
# ExecutionEnding is a RPC to tell runner to execute suite level hooks.
|
67
74
|
#
|
68
75
|
# Accepts a ExecutionEndingRequest message and returns a ExecutionStatusResponse message
|
69
|
-
rpc :FinishExecution, ExecutionEndingRequest, ExecutionStatusResponse
|
76
|
+
rpc :FinishExecution, ::Gauge::Messages::ExecutionEndingRequest, ::Gauge::Messages::ExecutionStatusResponse
|
70
77
|
# CacheFile is a RPC to tell runner to load/reload/unload a implementation file.
|
71
78
|
#
|
72
79
|
# Accepts a CacheFileRequest message and returns a Empty message
|
73
|
-
rpc :CacheFile, CacheFileRequest, Empty
|
80
|
+
rpc :CacheFile, ::Gauge::Messages::CacheFileRequest, ::Gauge::Messages::Empty
|
74
81
|
# GetStepName is a RPC to get information about the given step.
|
75
82
|
#
|
76
83
|
# Accepts a StepNameRequest message and returns a StepNameResponse message.
|
77
|
-
rpc :GetStepName, StepNameRequest, StepNameResponse
|
84
|
+
rpc :GetStepName, ::Gauge::Messages::StepNameRequest, ::Gauge::Messages::StepNameResponse
|
78
85
|
# GetGlobPatterns is a RPC to get the file path pattern which needs to be cached.
|
79
86
|
#
|
80
87
|
# Accepts a Empty message and returns a ImplementationFileGlobPatternResponse message.
|
81
|
-
rpc :GetGlobPatterns, Empty, ImplementationFileGlobPatternResponse
|
88
|
+
rpc :GetGlobPatterns, ::Gauge::Messages::Empty, ::Gauge::Messages::ImplementationFileGlobPatternResponse
|
82
89
|
# GetStepNames is a RPC to get all the available steps from the runner.
|
83
90
|
#
|
84
91
|
# Accepts a StepNamesRequest message and returns a StepNamesResponse
|
85
|
-
rpc :GetStepNames, StepNamesRequest, StepNamesResponse
|
92
|
+
rpc :GetStepNames, ::Gauge::Messages::StepNamesRequest, ::Gauge::Messages::StepNamesResponse
|
86
93
|
# GetStepPositions is a RPC to get positions of all available steps in a given file.
|
87
94
|
#
|
88
95
|
# Accepts a StepPositionsRequest message and returns a StepPositionsResponse message
|
89
|
-
rpc :GetStepPositions, StepPositionsRequest, StepPositionsResponse
|
96
|
+
rpc :GetStepPositions, ::Gauge::Messages::StepPositionsRequest, ::Gauge::Messages::StepPositionsResponse
|
90
97
|
# GetImplementationFiles is a RPC get all the existing implementation files.
|
91
98
|
#
|
92
99
|
# Accepts a Empty and returns a ImplementationFileListResponse message.
|
93
|
-
rpc :GetImplementationFiles, Empty, ImplementationFileListResponse
|
100
|
+
rpc :GetImplementationFiles, ::Gauge::Messages::Empty, ::Gauge::Messages::ImplementationFileListResponse
|
94
101
|
# ImplementStub is a RPC to to ask runner to add a given implementation to given file.
|
95
102
|
#
|
96
103
|
# Accepts a StubImplementationCodeRequest and returns a FileDiff message.
|
97
|
-
rpc :ImplementStub, StubImplementationCodeRequest, FileDiff
|
104
|
+
rpc :ImplementStub, ::Gauge::Messages::StubImplementationCodeRequest, ::Gauge::Messages::FileDiff
|
98
105
|
# Refactor is a RPC to refactor a given step in implementation file.
|
99
106
|
#
|
100
107
|
# Accepts a RefactorRequest message and returns a RefactorResponse message.
|
101
|
-
rpc :Refactor, RefactorRequest, RefactorResponse
|
108
|
+
rpc :Refactor, ::Gauge::Messages::RefactorRequest, ::Gauge::Messages::RefactorResponse
|
102
109
|
# Kill is a RPC tell plugin to stop grpc server and kill the plugin process.
|
103
110
|
#
|
104
111
|
# Accepts a KillProcessRequest message and returns a Empty message.
|
105
|
-
rpc :Kill, KillProcessRequest, Empty
|
112
|
+
rpc :Kill, ::Gauge::Messages::KillProcessRequest, ::Gauge::Messages::Empty
|
113
|
+
# NotifyConceptExecutionStarting is a RPC to tell plugins that the concept execution has started.
|
114
|
+
#
|
115
|
+
# Accepts a ConceptExecutionStartingRequest message and returns an ExecutionStatusResponse message
|
116
|
+
rpc :NotifyConceptExecutionStarting, ::Gauge::Messages::ConceptExecutionStartingRequest, ::Gauge::Messages::ExecutionStatusResponse
|
117
|
+
# NotifyConceptExecutionEnding is a RPC to tell plugins that the concept execution has finished.
|
118
|
+
#
|
119
|
+
# Accepts a ConceptExecutionEndingRequest message and returns an ExecutionStatusResponse message
|
120
|
+
rpc :NotifyConceptExecutionEnding, ::Gauge::Messages::ConceptExecutionEndingRequest, ::Gauge::Messages::ExecutionStatusResponse
|
106
121
|
end
|
107
122
|
|
108
123
|
Stub = Service.rpc_stub_class
|
@@ -111,7 +126,7 @@ module Gauge
|
|
111
126
|
# Reporter services is meant for reporting plugins, or others plugins which are interested the live events
|
112
127
|
class Service
|
113
128
|
|
114
|
-
include GRPC::GenericService
|
129
|
+
include ::GRPC::GenericService
|
115
130
|
|
116
131
|
self.marshal_class_method = :encode
|
117
132
|
self.unmarshal_class_method = :decode
|
@@ -120,43 +135,73 @@ module Gauge
|
|
120
135
|
# NotifyExecutionStarting is a RPC to tell plugins that the execution has started.
|
121
136
|
#
|
122
137
|
# Accepts a ExecutionStartingRequest message and returns a Empty message
|
123
|
-
rpc :NotifyExecutionStarting, ExecutionStartingRequest, Empty
|
138
|
+
rpc :NotifyExecutionStarting, ::Gauge::Messages::ExecutionStartingRequest, ::Gauge::Messages::Empty
|
124
139
|
# NotifySpecExecutionStarting is a RPC to tell plugins that the specification execution has started.
|
125
140
|
#
|
126
141
|
# Accepts a SpecExecutionStartingRequest message and returns a Empty message
|
127
|
-
rpc :NotifySpecExecutionStarting, SpecExecutionStartingRequest, Empty
|
142
|
+
rpc :NotifySpecExecutionStarting, ::Gauge::Messages::SpecExecutionStartingRequest, ::Gauge::Messages::Empty
|
128
143
|
# NotifyScenarioExecutionStarting is a RPC to tell plugins that the scenario execution has started.
|
129
144
|
#
|
130
145
|
# Accepts a ScenarioExecutionStartingRequest message and returns a Empty message
|
131
|
-
rpc :NotifyScenarioExecutionStarting, ScenarioExecutionStartingRequest, Empty
|
146
|
+
rpc :NotifyScenarioExecutionStarting, ::Gauge::Messages::ScenarioExecutionStartingRequest, ::Gauge::Messages::Empty
|
147
|
+
# NotifyConceptExecutionStarting is a RPC to tell plugins that the concept execution has started.
|
148
|
+
#
|
149
|
+
# Accepts a ConceptExecutionStartingRequest message and returns a Empty message
|
150
|
+
rpc :NotifyConceptExecutionStarting, ::Gauge::Messages::ConceptExecutionStartingRequest, ::Gauge::Messages::Empty
|
151
|
+
# NotifyConceptExecutionEnding is a RPC to tell plugins that the concept execution has finished.
|
152
|
+
#
|
153
|
+
# Accepts a ConceptExecutionEndingRequest message and returns a Empty message
|
154
|
+
rpc :NotifyConceptExecutionEnding, ::Gauge::Messages::ConceptExecutionEndingRequest, ::Gauge::Messages::Empty
|
132
155
|
# NotifyStepExecutionStarting is a RPC to tell plugins that the step execution has started.
|
133
156
|
#
|
134
157
|
# Accepts a StepExecutionStartingRequest message and returns a Empty message
|
135
|
-
rpc :NotifyStepExecutionStarting, StepExecutionStartingRequest, Empty
|
158
|
+
rpc :NotifyStepExecutionStarting, ::Gauge::Messages::StepExecutionStartingRequest, ::Gauge::Messages::Empty
|
136
159
|
# NotifyStepExecutionEnding is a RPC to tell plugins that the step execution has finished.
|
137
160
|
#
|
138
161
|
# Accepts a StepExecutionStartingRequest message and returns a Empty message
|
139
|
-
rpc :NotifyStepExecutionEnding, StepExecutionEndingRequest, Empty
|
162
|
+
rpc :NotifyStepExecutionEnding, ::Gauge::Messages::StepExecutionEndingRequest, ::Gauge::Messages::Empty
|
140
163
|
# NotifyScenarioExecutionEnding is a RPC to tell plugins that the scenario execution has finished.
|
141
164
|
#
|
142
165
|
# Accepts a ScenarioExecutionEndingRequest message and returns a Empty message
|
143
|
-
rpc :NotifyScenarioExecutionEnding, ScenarioExecutionEndingRequest, Empty
|
166
|
+
rpc :NotifyScenarioExecutionEnding, ::Gauge::Messages::ScenarioExecutionEndingRequest, ::Gauge::Messages::Empty
|
144
167
|
# NotifySpecExecutionEnding is a RPC to tell plugins that the specification execution has finished.
|
145
168
|
#
|
146
169
|
# Accepts a SpecExecutionStartingRequest message and returns a Empty message
|
147
|
-
rpc :NotifySpecExecutionEnding, SpecExecutionEndingRequest, Empty
|
170
|
+
rpc :NotifySpecExecutionEnding, ::Gauge::Messages::SpecExecutionEndingRequest, ::Gauge::Messages::Empty
|
148
171
|
# NotifyExecutionEnding is a RPC to tell plugins that the execution has finished.
|
149
172
|
#
|
150
173
|
# Accepts a ExecutionEndingRequest message and returns a Empty message
|
151
|
-
rpc :NotifyExecutionEnding, ExecutionEndingRequest, Empty
|
174
|
+
rpc :NotifyExecutionEnding, ::Gauge::Messages::ExecutionEndingRequest, ::Gauge::Messages::Empty
|
152
175
|
# NotifySuiteResult is a RPC to tell about the end result of execution
|
153
176
|
#
|
154
177
|
# Accepts a SuiteExecutionResult message and returns a Empty message.
|
155
|
-
rpc :NotifySuiteResult, SuiteExecutionResult, Empty
|
178
|
+
rpc :NotifySuiteResult, ::Gauge::Messages::SuiteExecutionResult, ::Gauge::Messages::Empty
|
179
|
+
# Kill is a RPC tell plugin to stop grpc server and kill the plugin process.
|
180
|
+
#
|
181
|
+
# Accepts a KillProcessRequest message and returns a Empty message.
|
182
|
+
rpc :Kill, ::Gauge::Messages::KillProcessRequest, ::Gauge::Messages::Empty
|
183
|
+
end
|
184
|
+
|
185
|
+
Stub = Service.rpc_stub_class
|
186
|
+
end
|
187
|
+
module Documenter
|
188
|
+
# Reporter services is meant for documentation plugins
|
189
|
+
class Service
|
190
|
+
|
191
|
+
include ::GRPC::GenericService
|
192
|
+
|
193
|
+
self.marshal_class_method = :encode
|
194
|
+
self.unmarshal_class_method = :decode
|
195
|
+
self.service_name = 'gauge.messages.Documenter'
|
196
|
+
|
197
|
+
# GenerateDocs is a RPC tell plugin to generate docs from the spec details.
|
198
|
+
#
|
199
|
+
# Accepts a SpecDetails message and returns a Empty message.
|
200
|
+
rpc :GenerateDocs, ::Gauge::Messages::SpecDetails, ::Gauge::Messages::Empty
|
156
201
|
# Kill is a RPC tell plugin to stop grpc server and kill the plugin process.
|
157
202
|
#
|
158
203
|
# Accepts a KillProcessRequest message and returns a Empty message.
|
159
|
-
rpc :Kill, KillProcessRequest, Empty
|
204
|
+
rpc :Kill, ::Gauge::Messages::KillProcessRequest, ::Gauge::Messages::Empty
|
160
205
|
end
|
161
206
|
|
162
207
|
Stub = Service.rpc_stub_class
|
data/lib/spec_pb.rb
CHANGED
@@ -1,272 +1,44 @@
|
|
1
|
+
# frozen_string_literal: true
|
1
2
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
3
|
# source: spec.proto
|
3
4
|
|
4
5
|
require 'google/protobuf'
|
5
6
|
|
6
|
-
|
7
|
-
add_file("spec.proto", :syntax => :proto3) do
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
optional :isTableDriven, :bool, 3
|
12
|
-
repeated :preHookFailures, :message, 4, "gauge.messages.ProtoHookFailure"
|
13
|
-
repeated :postHookFailures, :message, 5, "gauge.messages.ProtoHookFailure"
|
14
|
-
optional :fileName, :string, 6
|
15
|
-
repeated :tags, :string, 7
|
16
|
-
repeated :preHookMessages, :string, 8
|
17
|
-
repeated :postHookMessages, :string, 9
|
18
|
-
repeated :preHookMessage, :string, 10
|
19
|
-
repeated :postHookMessage, :string, 11
|
20
|
-
repeated :preHookScreenshots, :bytes, 12
|
21
|
-
repeated :postHookScreenshots, :bytes, 13
|
22
|
-
optional :itemCount, :int64, 14
|
23
|
-
repeated :preHookScreenshotFiles, :string, 15
|
24
|
-
repeated :postHookScreenshotFiles, :string, 16
|
25
|
-
end
|
26
|
-
add_message "gauge.messages.ProtoItem" do
|
27
|
-
optional :itemType, :enum, 1, "gauge.messages.ProtoItem.ItemType"
|
28
|
-
optional :step, :message, 2, "gauge.messages.ProtoStep"
|
29
|
-
optional :concept, :message, 3, "gauge.messages.ProtoConcept"
|
30
|
-
optional :scenario, :message, 4, "gauge.messages.ProtoScenario"
|
31
|
-
optional :tableDrivenScenario, :message, 5, "gauge.messages.ProtoTableDrivenScenario"
|
32
|
-
optional :comment, :message, 6, "gauge.messages.ProtoComment"
|
33
|
-
optional :table, :message, 7, "gauge.messages.ProtoTable"
|
34
|
-
optional :tags, :message, 8, "gauge.messages.ProtoTags"
|
35
|
-
optional :fileName, :string, 9
|
36
|
-
end
|
37
|
-
add_enum "gauge.messages.ProtoItem.ItemType" do
|
38
|
-
value :Step, 0
|
39
|
-
value :Comment, 1
|
40
|
-
value :Concept, 2
|
41
|
-
value :Scenario, 3
|
42
|
-
value :TableDrivenScenario, 4
|
43
|
-
value :Table, 5
|
44
|
-
value :Tags, 6
|
45
|
-
end
|
46
|
-
add_message "gauge.messages.ProtoScenario" do
|
47
|
-
optional :scenarioHeading, :string, 1
|
48
|
-
optional :failed, :bool, 2
|
49
|
-
repeated :contexts, :message, 3, "gauge.messages.ProtoItem"
|
50
|
-
repeated :scenarioItems, :message, 4, "gauge.messages.ProtoItem"
|
51
|
-
optional :preHookFailure, :message, 5, "gauge.messages.ProtoHookFailure"
|
52
|
-
optional :postHookFailure, :message, 6, "gauge.messages.ProtoHookFailure"
|
53
|
-
repeated :tags, :string, 7
|
54
|
-
optional :executionTime, :int64, 8
|
55
|
-
optional :skipped, :bool, 9
|
56
|
-
repeated :skipErrors, :string, 10
|
57
|
-
optional :ID, :string, 11
|
58
|
-
repeated :tearDownSteps, :message, 12, "gauge.messages.ProtoItem"
|
59
|
-
optional :span, :message, 13, "gauge.messages.Span"
|
60
|
-
optional :executionStatus, :enum, 14, "gauge.messages.ExecutionStatus"
|
61
|
-
repeated :preHookMessages, :string, 15
|
62
|
-
repeated :postHookMessages, :string, 16
|
63
|
-
repeated :preHookMessage, :string, 17
|
64
|
-
repeated :postHookMessage, :string, 18
|
65
|
-
repeated :preHookScreenshots, :bytes, 19
|
66
|
-
repeated :postHookScreenshots, :bytes, 20
|
67
|
-
repeated :preHookScreenshotFiles, :string, 21
|
68
|
-
repeated :postHookScreenshotFiles, :string, 22
|
69
|
-
end
|
70
|
-
add_message "gauge.messages.Span" do
|
71
|
-
optional :start, :int64, 1
|
72
|
-
optional :end, :int64, 2
|
73
|
-
optional :startChar, :int64, 3
|
74
|
-
optional :endChar, :int64, 4
|
75
|
-
end
|
76
|
-
add_message "gauge.messages.ProtoTableDrivenScenario" do
|
77
|
-
optional :scenario, :message, 1, "gauge.messages.ProtoScenario"
|
78
|
-
optional :tableRowIndex, :int32, 2
|
79
|
-
optional :scenarioTableRowIndex, :int32, 3
|
80
|
-
optional :isSpecTableDriven, :bool, 4
|
81
|
-
optional :isScenarioTableDriven, :bool, 5
|
82
|
-
optional :scenarioDataTable, :message, 6, "gauge.messages.ProtoTable"
|
83
|
-
optional :scenarioTableRow, :message, 7, "gauge.messages.ProtoTable"
|
84
|
-
end
|
85
|
-
add_message "gauge.messages.ProtoStep" do
|
86
|
-
optional :actualText, :string, 1
|
87
|
-
optional :parsedText, :string, 2
|
88
|
-
repeated :fragments, :message, 3, "gauge.messages.Fragment"
|
89
|
-
optional :stepExecutionResult, :message, 4, "gauge.messages.ProtoStepExecutionResult"
|
90
|
-
repeated :preHookMessages, :string, 5
|
91
|
-
repeated :postHookMessages, :string, 6
|
92
|
-
repeated :preHookScreenshots, :bytes, 7
|
93
|
-
repeated :postHookScreenshots, :bytes, 8
|
94
|
-
repeated :preHookScreenshotFiles, :string, 9
|
95
|
-
repeated :postHookScreenshotFiles, :string, 10
|
96
|
-
end
|
97
|
-
add_message "gauge.messages.ProtoConcept" do
|
98
|
-
optional :conceptStep, :message, 1, "gauge.messages.ProtoStep"
|
99
|
-
repeated :steps, :message, 2, "gauge.messages.ProtoItem"
|
100
|
-
optional :conceptExecutionResult, :message, 3, "gauge.messages.ProtoStepExecutionResult"
|
101
|
-
end
|
102
|
-
add_message "gauge.messages.ProtoTags" do
|
103
|
-
repeated :tags, :string, 1
|
104
|
-
end
|
105
|
-
add_message "gauge.messages.Fragment" do
|
106
|
-
optional :fragmentType, :enum, 1, "gauge.messages.Fragment.FragmentType"
|
107
|
-
optional :text, :string, 2
|
108
|
-
optional :parameter, :message, 3, "gauge.messages.Parameter"
|
109
|
-
end
|
110
|
-
add_enum "gauge.messages.Fragment.FragmentType" do
|
111
|
-
value :Text, 0
|
112
|
-
value :Parameter, 1
|
113
|
-
end
|
114
|
-
add_message "gauge.messages.Parameter" do
|
115
|
-
optional :parameterType, :enum, 1, "gauge.messages.Parameter.ParameterType"
|
116
|
-
optional :value, :string, 2
|
117
|
-
optional :name, :string, 3
|
118
|
-
optional :table, :message, 4, "gauge.messages.ProtoTable"
|
119
|
-
end
|
120
|
-
add_enum "gauge.messages.Parameter.ParameterType" do
|
121
|
-
value :Static, 0
|
122
|
-
value :Dynamic, 1
|
123
|
-
value :Special_String, 2
|
124
|
-
value :Special_Table, 3
|
125
|
-
value :Table, 4
|
126
|
-
end
|
127
|
-
add_message "gauge.messages.ProtoComment" do
|
128
|
-
optional :text, :string, 1
|
129
|
-
end
|
130
|
-
add_message "gauge.messages.ProtoTable" do
|
131
|
-
optional :headers, :message, 1, "gauge.messages.ProtoTableRow"
|
132
|
-
repeated :rows, :message, 2, "gauge.messages.ProtoTableRow"
|
133
|
-
end
|
134
|
-
add_message "gauge.messages.ProtoTableRow" do
|
135
|
-
repeated :cells, :string, 1
|
136
|
-
end
|
137
|
-
add_message "gauge.messages.ProtoStepExecutionResult" do
|
138
|
-
optional :executionResult, :message, 1, "gauge.messages.ProtoExecutionResult"
|
139
|
-
optional :preHookFailure, :message, 2, "gauge.messages.ProtoHookFailure"
|
140
|
-
optional :postHookFailure, :message, 3, "gauge.messages.ProtoHookFailure"
|
141
|
-
optional :skipped, :bool, 4
|
142
|
-
optional :skippedReason, :string, 5
|
143
|
-
end
|
144
|
-
add_message "gauge.messages.ProtoExecutionResult" do
|
145
|
-
optional :failed, :bool, 1
|
146
|
-
optional :recoverableError, :bool, 2
|
147
|
-
optional :errorMessage, :string, 3
|
148
|
-
optional :stackTrace, :string, 4
|
149
|
-
optional :screenShot, :bytes, 5
|
150
|
-
optional :executionTime, :int64, 6
|
151
|
-
repeated :message, :string, 7
|
152
|
-
optional :errorType, :enum, 8, "gauge.messages.ProtoExecutionResult.ErrorType"
|
153
|
-
optional :failureScreenshot, :bytes, 9
|
154
|
-
repeated :screenshots, :bytes, 10
|
155
|
-
optional :failureScreenshotFile, :string, 11
|
156
|
-
repeated :screenshotFiles, :string, 12
|
157
|
-
end
|
158
|
-
add_enum "gauge.messages.ProtoExecutionResult.ErrorType" do
|
159
|
-
value :ASSERTION, 0
|
160
|
-
value :VERIFICATION, 1
|
161
|
-
end
|
162
|
-
add_message "gauge.messages.ProtoHookFailure" do
|
163
|
-
optional :stackTrace, :string, 1
|
164
|
-
optional :errorMessage, :string, 2
|
165
|
-
optional :screenShot, :bytes, 3
|
166
|
-
optional :tableRowIndex, :int32, 4
|
167
|
-
optional :failureScreenshot, :bytes, 5
|
168
|
-
optional :failureScreenshotFile, :string, 6
|
169
|
-
end
|
170
|
-
add_message "gauge.messages.ProtoSuiteResult" do
|
171
|
-
repeated :specResults, :message, 1, "gauge.messages.ProtoSpecResult"
|
172
|
-
optional :preHookFailure, :message, 2, "gauge.messages.ProtoHookFailure"
|
173
|
-
optional :postHookFailure, :message, 3, "gauge.messages.ProtoHookFailure"
|
174
|
-
optional :failed, :bool, 4
|
175
|
-
optional :specsFailedCount, :int32, 5
|
176
|
-
optional :executionTime, :int64, 6
|
177
|
-
optional :successRate, :float, 7
|
178
|
-
optional :environment, :string, 8
|
179
|
-
optional :tags, :string, 9
|
180
|
-
optional :projectName, :string, 10
|
181
|
-
optional :timestamp, :string, 11
|
182
|
-
optional :specsSkippedCount, :int32, 12
|
183
|
-
repeated :preHookMessages, :string, 13
|
184
|
-
repeated :postHookMessages, :string, 14
|
185
|
-
repeated :preHookMessage, :string, 15
|
186
|
-
repeated :postHookMessage, :string, 16
|
187
|
-
repeated :preHookScreenshots, :bytes, 17
|
188
|
-
repeated :postHookScreenshots, :bytes, 18
|
189
|
-
optional :chunked, :bool, 19
|
190
|
-
optional :chunkSize, :int64, 20
|
191
|
-
repeated :preHookScreenshotFiles, :string, 21
|
192
|
-
repeated :postHookScreenshotFiles, :string, 22
|
193
|
-
end
|
194
|
-
add_message "gauge.messages.ProtoSpecResult" do
|
195
|
-
optional :protoSpec, :message, 1, "gauge.messages.ProtoSpec"
|
196
|
-
optional :scenarioCount, :int32, 2
|
197
|
-
optional :scenarioFailedCount, :int32, 3
|
198
|
-
optional :failed, :bool, 4
|
199
|
-
repeated :failedDataTableRows, :int32, 5
|
200
|
-
optional :executionTime, :int64, 6
|
201
|
-
optional :skipped, :bool, 7
|
202
|
-
optional :scenarioSkippedCount, :int32, 8
|
203
|
-
repeated :skippedDataTableRows, :int32, 9
|
204
|
-
repeated :errors, :message, 10, "gauge.messages.Error"
|
205
|
-
optional :timestamp, :string, 11
|
206
|
-
end
|
207
|
-
add_message "gauge.messages.ProtoScenarioResult" do
|
208
|
-
optional :protoItem, :message, 1, "gauge.messages.ProtoItem"
|
209
|
-
optional :executionTime, :int64, 2
|
210
|
-
optional :timestamp, :string, 3
|
211
|
-
end
|
212
|
-
add_message "gauge.messages.ProtoStepResult" do
|
213
|
-
optional :protoItem, :message, 1, "gauge.messages.ProtoItem"
|
214
|
-
optional :executionTime, :int64, 2
|
215
|
-
optional :timestamp, :string, 3
|
216
|
-
end
|
217
|
-
add_message "gauge.messages.Error" do
|
218
|
-
optional :type, :enum, 1, "gauge.messages.Error.ErrorType"
|
219
|
-
optional :filename, :string, 2
|
220
|
-
optional :lineNumber, :int32, 3
|
221
|
-
optional :message, :string, 4
|
222
|
-
end
|
223
|
-
add_enum "gauge.messages.Error.ErrorType" do
|
224
|
-
value :PARSE_ERROR, 0
|
225
|
-
value :VALIDATION_ERROR, 1
|
226
|
-
end
|
227
|
-
add_message "gauge.messages.ProtoStepValue" do
|
228
|
-
optional :stepValue, :string, 1
|
229
|
-
optional :parameterizedStepValue, :string, 2
|
230
|
-
repeated :parameters, :string, 3
|
231
|
-
end
|
232
|
-
add_enum "gauge.messages.ExecutionStatus" do
|
233
|
-
value :NOTEXECUTED, 0
|
234
|
-
value :PASSED, 1
|
235
|
-
value :FAILED, 2
|
236
|
-
value :SKIPPED, 3
|
237
|
-
end
|
238
|
-
end
|
239
|
-
end
|
7
|
+
|
8
|
+
descriptor_data = "\n\nspec.proto\x12\x0egauge.messages\"\xf9\x03\n\tProtoSpec\x12\x13\n\x0bspecHeading\x18\x01 \x01(\t\x12(\n\x05items\x18\x02 \x03(\x0b\x32\x19.gauge.messages.ProtoItem\x12\x15\n\risTableDriven\x18\x03 \x01(\x08\x12\x39\n\x0fpreHookFailures\x18\x04 \x03(\x0b\x32 .gauge.messages.ProtoHookFailure\x12:\n\x10postHookFailures\x18\x05 \x03(\x0b\x32 .gauge.messages.ProtoHookFailure\x12\x10\n\x08\x66ileName\x18\x06 \x01(\t\x12\x0c\n\x04tags\x18\x07 \x03(\t\x12\x17\n\x0fpreHookMessages\x18\x08 \x03(\t\x12\x18\n\x10postHookMessages\x18\t \x03(\t\x12\x1a\n\x0epreHookMessage\x18\n \x03(\tB\x02\x18\x01\x12\x1b\n\x0fpostHookMessage\x18\x0b \x03(\tB\x02\x18\x01\x12\x1e\n\x12preHookScreenshots\x18\x0c \x03(\x0c\x42\x02\x18\x01\x12\x1f\n\x13postHookScreenshots\x18\r \x03(\x0c\x42\x02\x18\x01\x12\x11\n\titemCount\x18\x0e \x01(\x03\x12\x1e\n\x16preHookScreenshotFiles\x18\x0f \x03(\t\x12\x1f\n\x17postHookScreenshotFiles\x18\x10 \x03(\t\"\x92\x04\n\tProtoItem\x12\x34\n\x08itemType\x18\x01 \x01(\x0e\x32\".gauge.messages.ProtoItem.ItemType\x12\'\n\x04step\x18\x02 \x01(\x0b\x32\x19.gauge.messages.ProtoStep\x12-\n\x07\x63oncept\x18\x03 \x01(\x0b\x32\x1c.gauge.messages.ProtoConcept\x12/\n\x08scenario\x18\x04 \x01(\x0b\x32\x1d.gauge.messages.ProtoScenario\x12\x45\n\x13tableDrivenScenario\x18\x05 \x01(\x0b\x32(.gauge.messages.ProtoTableDrivenScenario\x12-\n\x07\x63omment\x18\x06 \x01(\x0b\x32\x1c.gauge.messages.ProtoComment\x12)\n\x05table\x18\x07 \x01(\x0b\x32\x1a.gauge.messages.ProtoTable\x12\'\n\x04tags\x18\x08 \x01(\x0b\x32\x19.gauge.messages.ProtoTags\x12\x10\n\x08\x66ileName\x18\t \x01(\t\"j\n\x08ItemType\x12\x08\n\x04Step\x10\x00\x12\x0b\n\x07\x43omment\x10\x01\x12\x0b\n\x07\x43oncept\x10\x02\x12\x0c\n\x08Scenario\x10\x03\x12\x17\n\x13TableDrivenScenario\x10\x04\x12\t\n\x05Table\x10\x05\x12\x08\n\x04Tags\x10\x06\"\xfe\x05\n\rProtoScenario\x12\x17\n\x0fscenarioHeading\x18\x01 \x01(\t\x12\x12\n\x06\x66\x61iled\x18\x02 \x01(\x08\x42\x02\x18\x01\x12+\n\x08\x63ontexts\x18\x03 \x03(\x0b\x32\x19.gauge.messages.ProtoItem\x12\x30\n\rscenarioItems\x18\x04 \x03(\x0b\x32\x19.gauge.messages.ProtoItem\x12\x38\n\x0epreHookFailure\x18\x05 \x01(\x0b\x32 .gauge.messages.ProtoHookFailure\x12\x39\n\x0fpostHookFailure\x18\x06 \x01(\x0b\x32 .gauge.messages.ProtoHookFailure\x12\x0c\n\x04tags\x18\x07 \x03(\t\x12\x15\n\rexecutionTime\x18\x08 \x01(\x03\x12\x13\n\x07skipped\x18\t \x01(\x08\x42\x02\x18\x01\x12\x12\n\nskipErrors\x18\n \x03(\t\x12\n\n\x02ID\x18\x0b \x01(\t\x12\x30\n\rtearDownSteps\x18\x0c \x03(\x0b\x32\x19.gauge.messages.ProtoItem\x12\"\n\x04span\x18\r \x01(\x0b\x32\x14.gauge.messages.Span\x12\x38\n\x0f\x65xecutionStatus\x18\x0e \x01(\x0e\x32\x1f.gauge.messages.ExecutionStatus\x12\x17\n\x0fpreHookMessages\x18\x0f \x03(\t\x12\x18\n\x10postHookMessages\x18\x10 \x03(\t\x12\x1a\n\x0epreHookMessage\x18\x11 \x03(\tB\x02\x18\x01\x12\x1b\n\x0fpostHookMessage\x18\x12 \x03(\tB\x02\x18\x01\x12\x1e\n\x12preHookScreenshots\x18\x13 \x03(\x0c\x42\x02\x18\x01\x12\x1f\n\x13postHookScreenshots\x18\x14 \x03(\x0c\x42\x02\x18\x01\x12\x1e\n\x16preHookScreenshotFiles\x18\x15 \x03(\t\x12\x1f\n\x17postHookScreenshotFiles\x18\x16 \x03(\t\x12\x14\n\x0cretriesCount\x18\x17 \x01(\x03\"F\n\x04Span\x12\r\n\x05start\x18\x01 \x01(\x03\x12\x0b\n\x03\x65nd\x18\x02 \x01(\x03\x12\x11\n\tstartChar\x18\x03 \x01(\x03\x12\x0f\n\x07\x65ndChar\x18\x04 \x01(\x03\"\xa8\x02\n\x18ProtoTableDrivenScenario\x12/\n\x08scenario\x18\x01 \x01(\x0b\x32\x1d.gauge.messages.ProtoScenario\x12\x15\n\rtableRowIndex\x18\x02 \x01(\x05\x12\x1d\n\x15scenarioTableRowIndex\x18\x03 \x01(\x05\x12\x19\n\x11isSpecTableDriven\x18\x04 \x01(\x08\x12\x1d\n\x15isScenarioTableDriven\x18\x05 \x01(\x08\x12\x35\n\x11scenarioDataTable\x18\x06 \x01(\x0b\x32\x1a.gauge.messages.ProtoTable\x12\x34\n\x10scenarioTableRow\x18\x07 \x01(\x0b\x32\x1a.gauge.messages.ProtoTable\"\xdc\x02\n\tProtoStep\x12\x12\n\nactualText\x18\x01 \x01(\t\x12\x12\n\nparsedText\x18\x02 \x01(\t\x12+\n\tfragments\x18\x03 \x03(\x0b\x32\x18.gauge.messages.Fragment\x12\x45\n\x13stepExecutionResult\x18\x04 \x01(\x0b\x32(.gauge.messages.ProtoStepExecutionResult\x12\x17\n\x0fpreHookMessages\x18\x05 \x03(\t\x12\x18\n\x10postHookMessages\x18\x06 \x03(\t\x12\x1e\n\x12preHookScreenshots\x18\x07 \x03(\x0c\x42\x02\x18\x01\x12\x1f\n\x13postHookScreenshots\x18\x08 \x03(\x0c\x42\x02\x18\x01\x12\x1e\n\x16preHookScreenshotFiles\x18\t \x03(\t\x12\x1f\n\x17postHookScreenshotFiles\x18\n \x03(\t\"\xb2\x01\n\x0cProtoConcept\x12.\n\x0b\x63onceptStep\x18\x01 \x01(\x0b\x32\x19.gauge.messages.ProtoStep\x12(\n\x05steps\x18\x02 \x03(\x0b\x32\x19.gauge.messages.ProtoItem\x12H\n\x16\x63onceptExecutionResult\x18\x03 \x01(\x0b\x32(.gauge.messages.ProtoStepExecutionResult\"\x19\n\tProtoTags\x12\x0c\n\x04tags\x18\x01 \x03(\t\"\xac\x01\n\x08\x46ragment\x12;\n\x0c\x66ragmentType\x18\x01 \x01(\x0e\x32%.gauge.messages.Fragment.FragmentType\x12\x0c\n\x04text\x18\x02 \x01(\t\x12,\n\tparameter\x18\x03 \x01(\x0b\x32\x19.gauge.messages.Parameter\"\'\n\x0c\x46ragmentType\x12\x08\n\x04Text\x10\x00\x12\r\n\tParameter\x10\x01\"\xef\x01\n\tParameter\x12>\n\rparameterType\x18\x01 \x01(\x0e\x32\'.gauge.messages.Parameter.ParameterType\x12\r\n\x05value\x18\x02 \x01(\t\x12\x0c\n\x04name\x18\x03 \x01(\t\x12)\n\x05table\x18\x04 \x01(\x0b\x32\x1a.gauge.messages.ProtoTable\"Z\n\rParameterType\x12\n\n\x06Static\x10\x00\x12\x0b\n\x07\x44ynamic\x10\x01\x12\x12\n\x0eSpecial_String\x10\x02\x12\x11\n\rSpecial_Table\x10\x03\x12\t\n\x05Table\x10\x04\"\x1c\n\x0cProtoComment\x12\x0c\n\x04text\x18\x01 \x01(\t\"i\n\nProtoTable\x12.\n\x07headers\x18\x01 \x01(\x0b\x32\x1d.gauge.messages.ProtoTableRow\x12+\n\x04rows\x18\x02 \x03(\x0b\x32\x1d.gauge.messages.ProtoTableRow\"\x1e\n\rProtoTableRow\x12\r\n\x05\x63\x65lls\x18\x01 \x03(\t\"\xf6\x01\n\x18ProtoStepExecutionResult\x12=\n\x0f\x65xecutionResult\x18\x01 \x01(\x0b\x32$.gauge.messages.ProtoExecutionResult\x12\x38\n\x0epreHookFailure\x18\x02 \x01(\x0b\x32 .gauge.messages.ProtoHookFailure\x12\x39\n\x0fpostHookFailure\x18\x03 \x01(\x0b\x32 .gauge.messages.ProtoHookFailure\x12\x0f\n\x07skipped\x18\x04 \x01(\x08\x12\x15\n\rskippedReason\x18\x05 \x01(\t\"\xa1\x03\n\x14ProtoExecutionResult\x12\x0e\n\x06\x66\x61iled\x18\x01 \x01(\x08\x12\x18\n\x10recoverableError\x18\x02 \x01(\x08\x12\x14\n\x0c\x65rrorMessage\x18\x03 \x01(\t\x12\x12\n\nstackTrace\x18\x04 \x01(\t\x12\x16\n\nscreenShot\x18\x05 \x01(\x0c\x42\x02\x18\x01\x12\x15\n\rexecutionTime\x18\x06 \x01(\x03\x12\x0f\n\x07message\x18\x07 \x03(\t\x12\x41\n\terrorType\x18\x08 \x01(\x0e\x32..gauge.messages.ProtoExecutionResult.ErrorType\x12\x1d\n\x11\x66\x61ilureScreenshot\x18\t \x01(\x0c\x42\x02\x18\x01\x12\x17\n\x0bscreenshots\x18\n \x03(\x0c\x42\x02\x18\x01\x12\x1d\n\x15\x66\x61ilureScreenshotFile\x18\x0b \x01(\t\x12\x17\n\x0fscreenshotFiles\x18\x0c \x03(\t\x12\x14\n\x0cskipScenario\x18\r \x01(\x08\",\n\tErrorType\x12\r\n\tASSERTION\x10\x00\x12\x10\n\x0cVERIFICATION\x10\x01\"\xa9\x01\n\x10ProtoHookFailure\x12\x12\n\nstackTrace\x18\x01 \x01(\t\x12\x14\n\x0c\x65rrorMessage\x18\x02 \x01(\t\x12\x16\n\nscreenShot\x18\x03 \x01(\x0c\x42\x02\x18\x01\x12\x15\n\rtableRowIndex\x18\x04 \x01(\x05\x12\x1d\n\x11\x66\x61ilureScreenshot\x18\x05 \x01(\x0c\x42\x02\x18\x01\x12\x1d\n\x15\x66\x61ilureScreenshotFile\x18\x06 \x01(\t\"\x8b\x05\n\x10ProtoSuiteResult\x12\x34\n\x0bspecResults\x18\x01 \x03(\x0b\x32\x1f.gauge.messages.ProtoSpecResult\x12\x38\n\x0epreHookFailure\x18\x02 \x01(\x0b\x32 .gauge.messages.ProtoHookFailure\x12\x39\n\x0fpostHookFailure\x18\x03 \x01(\x0b\x32 .gauge.messages.ProtoHookFailure\x12\x0e\n\x06\x66\x61iled\x18\x04 \x01(\x08\x12\x18\n\x10specsFailedCount\x18\x05 \x01(\x05\x12\x15\n\rexecutionTime\x18\x06 \x01(\x03\x12\x13\n\x0bsuccessRate\x18\x07 \x01(\x02\x12\x13\n\x0b\x65nvironment\x18\x08 \x01(\t\x12\x0c\n\x04tags\x18\t \x01(\t\x12\x13\n\x0bprojectName\x18\n \x01(\t\x12\x11\n\ttimestamp\x18\x0b \x01(\t\x12\x19\n\x11specsSkippedCount\x18\x0c \x01(\x05\x12\x17\n\x0fpreHookMessages\x18\r \x03(\t\x12\x18\n\x10postHookMessages\x18\x0e \x03(\t\x12\x1a\n\x0epreHookMessage\x18\x0f \x03(\tB\x02\x18\x01\x12\x1b\n\x0fpostHookMessage\x18\x10 \x03(\tB\x02\x18\x01\x12\x1e\n\x12preHookScreenshots\x18\x11 \x03(\x0c\x42\x02\x18\x01\x12\x1f\n\x13postHookScreenshots\x18\x12 \x03(\x0c\x42\x02\x18\x01\x12\x0f\n\x07\x63hunked\x18\x13 \x01(\x08\x12\x11\n\tchunkSize\x18\x14 \x01(\x03\x12\x1e\n\x16preHookScreenshotFiles\x18\x15 \x03(\t\x12\x1f\n\x17postHookScreenshotFiles\x18\x16 \x03(\t\"\xbe\x02\n\x0fProtoSpecResult\x12,\n\tprotoSpec\x18\x01 \x01(\x0b\x32\x19.gauge.messages.ProtoSpec\x12\x15\n\rscenarioCount\x18\x02 \x01(\x05\x12\x1b\n\x13scenarioFailedCount\x18\x03 \x01(\x05\x12\x0e\n\x06\x66\x61iled\x18\x04 \x01(\x08\x12\x1b\n\x13\x66\x61iledDataTableRows\x18\x05 \x03(\x05\x12\x15\n\rexecutionTime\x18\x06 \x01(\x03\x12\x0f\n\x07skipped\x18\x07 \x01(\x08\x12\x1c\n\x14scenarioSkippedCount\x18\x08 \x01(\x05\x12\x1c\n\x14skippedDataTableRows\x18\t \x03(\x05\x12%\n\x06\x65rrors\x18\n \x03(\x0b\x32\x15.gauge.messages.Error\x12\x11\n\ttimestamp\x18\x0b \x01(\t\"m\n\x13ProtoScenarioResult\x12,\n\tprotoItem\x18\x01 \x01(\x0b\x32\x19.gauge.messages.ProtoItem\x12\x15\n\rexecutionTime\x18\x02 \x01(\x03\x12\x11\n\ttimestamp\x18\x03 \x01(\t\"i\n\x0fProtoStepResult\x12,\n\tprotoItem\x18\x01 \x01(\x0b\x32\x19.gauge.messages.ProtoItem\x12\x15\n\rexecutionTime\x18\x02 \x01(\x03\x12\x11\n\ttimestamp\x18\x03 \x01(\t\"\xa1\x01\n\x05\x45rror\x12-\n\x04type\x18\x01 \x01(\x0e\x32\x1f.gauge.messages.Error.ErrorType\x12\x10\n\x08\x66ilename\x18\x02 \x01(\t\x12\x12\n\nlineNumber\x18\x03 \x01(\x05\x12\x0f\n\x07message\x18\x04 \x01(\t\"2\n\tErrorType\x12\x0f\n\x0bPARSE_ERROR\x10\x00\x12\x14\n\x10VALIDATION_ERROR\x10\x01\"W\n\x0eProtoStepValue\x12\x11\n\tstepValue\x18\x01 \x01(\t\x12\x1e\n\x16parameterizedStepValue\x18\x02 \x01(\t\x12\x12\n\nparameters\x18\x03 \x03(\t*G\n\x0f\x45xecutionStatus\x12\x0f\n\x0bNOTEXECUTED\x10\x00\x12\n\n\x06PASSED\x10\x01\x12\n\n\x06\x46\x41ILED\x10\x02\x12\x0b\n\x07SKIPPED\x10\x03\x42\\\n\x16\x63om.thoughtworks.gaugeZ1github.com/getgauge/gauge-proto/go/gauge_messages\xaa\x02\x0eGauge.Messagesb\x06proto3"
|
9
|
+
|
10
|
+
pool = Google::Protobuf::DescriptorPool.generated_pool
|
11
|
+
pool.add_serialized_file(descriptor_data)
|
240
12
|
|
241
13
|
module Gauge
|
242
14
|
module Messages
|
243
|
-
ProtoSpec = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ProtoSpec").msgclass
|
244
|
-
ProtoItem = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ProtoItem").msgclass
|
245
|
-
ProtoItem::ItemType = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ProtoItem.ItemType").enummodule
|
246
|
-
ProtoScenario = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ProtoScenario").msgclass
|
247
|
-
Span = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.Span").msgclass
|
248
|
-
ProtoTableDrivenScenario = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ProtoTableDrivenScenario").msgclass
|
249
|
-
ProtoStep = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ProtoStep").msgclass
|
250
|
-
ProtoConcept = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ProtoConcept").msgclass
|
251
|
-
ProtoTags = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ProtoTags").msgclass
|
252
|
-
Fragment = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.Fragment").msgclass
|
253
|
-
Fragment::FragmentType = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.Fragment.FragmentType").enummodule
|
254
|
-
Parameter = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.Parameter").msgclass
|
255
|
-
Parameter::ParameterType = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.Parameter.ParameterType").enummodule
|
256
|
-
ProtoComment = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ProtoComment").msgclass
|
257
|
-
ProtoTable = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ProtoTable").msgclass
|
258
|
-
ProtoTableRow = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ProtoTableRow").msgclass
|
259
|
-
ProtoStepExecutionResult = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ProtoStepExecutionResult").msgclass
|
260
|
-
ProtoExecutionResult = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ProtoExecutionResult").msgclass
|
261
|
-
ProtoExecutionResult::ErrorType = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ProtoExecutionResult.ErrorType").enummodule
|
262
|
-
ProtoHookFailure = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ProtoHookFailure").msgclass
|
263
|
-
ProtoSuiteResult = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ProtoSuiteResult").msgclass
|
264
|
-
ProtoSpecResult = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ProtoSpecResult").msgclass
|
265
|
-
ProtoScenarioResult = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ProtoScenarioResult").msgclass
|
266
|
-
ProtoStepResult = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ProtoStepResult").msgclass
|
267
|
-
Error = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.Error").msgclass
|
268
|
-
Error::ErrorType = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.Error.ErrorType").enummodule
|
269
|
-
ProtoStepValue = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ProtoStepValue").msgclass
|
270
|
-
ExecutionStatus = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ExecutionStatus").enummodule
|
15
|
+
ProtoSpec = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ProtoSpec").msgclass
|
16
|
+
ProtoItem = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ProtoItem").msgclass
|
17
|
+
ProtoItem::ItemType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ProtoItem.ItemType").enummodule
|
18
|
+
ProtoScenario = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ProtoScenario").msgclass
|
19
|
+
Span = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.Span").msgclass
|
20
|
+
ProtoTableDrivenScenario = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ProtoTableDrivenScenario").msgclass
|
21
|
+
ProtoStep = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ProtoStep").msgclass
|
22
|
+
ProtoConcept = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ProtoConcept").msgclass
|
23
|
+
ProtoTags = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ProtoTags").msgclass
|
24
|
+
Fragment = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.Fragment").msgclass
|
25
|
+
Fragment::FragmentType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.Fragment.FragmentType").enummodule
|
26
|
+
Parameter = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.Parameter").msgclass
|
27
|
+
Parameter::ParameterType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.Parameter.ParameterType").enummodule
|
28
|
+
ProtoComment = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ProtoComment").msgclass
|
29
|
+
ProtoTable = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ProtoTable").msgclass
|
30
|
+
ProtoTableRow = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ProtoTableRow").msgclass
|
31
|
+
ProtoStepExecutionResult = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ProtoStepExecutionResult").msgclass
|
32
|
+
ProtoExecutionResult = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ProtoExecutionResult").msgclass
|
33
|
+
ProtoExecutionResult::ErrorType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ProtoExecutionResult.ErrorType").enummodule
|
34
|
+
ProtoHookFailure = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ProtoHookFailure").msgclass
|
35
|
+
ProtoSuiteResult = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ProtoSuiteResult").msgclass
|
36
|
+
ProtoSpecResult = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ProtoSpecResult").msgclass
|
37
|
+
ProtoScenarioResult = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ProtoScenarioResult").msgclass
|
38
|
+
ProtoStepResult = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ProtoStepResult").msgclass
|
39
|
+
Error = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.Error").msgclass
|
40
|
+
Error::ErrorType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.Error.ErrorType").enummodule
|
41
|
+
ProtoStepValue = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ProtoStepValue").msgclass
|
42
|
+
ExecutionStatus = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ExecutionStatus").enummodule
|
271
43
|
end
|
272
44
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gauge-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gauge Team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-07-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: parser
|
@@ -60,6 +60,9 @@ dependencies:
|
|
60
60
|
- - ">="
|
61
61
|
- !ruby/object:Gem::Version
|
62
62
|
version: 1.10.0
|
63
|
+
- - "<"
|
64
|
+
- !ruby/object:Gem::Version
|
65
|
+
version: '1.65'
|
63
66
|
type: :runtime
|
64
67
|
prerelease: false
|
65
68
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -70,6 +73,9 @@ dependencies:
|
|
70
73
|
- - ">="
|
71
74
|
- !ruby/object:Gem::Version
|
72
75
|
version: 1.10.0
|
76
|
+
- - "<"
|
77
|
+
- !ruby/object:Gem::Version
|
78
|
+
version: '1.65'
|
73
79
|
- !ruby/object:Gem::Dependency
|
74
80
|
name: grpc-tools
|
75
81
|
requirement: !ruby/object:Gem::Requirement
|
@@ -80,6 +86,9 @@ dependencies:
|
|
80
86
|
- - ">="
|
81
87
|
- !ruby/object:Gem::Version
|
82
88
|
version: 1.10.0
|
89
|
+
- - "<"
|
90
|
+
- !ruby/object:Gem::Version
|
91
|
+
version: '1.65'
|
83
92
|
type: :development
|
84
93
|
prerelease: false
|
85
94
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -90,6 +99,9 @@ dependencies:
|
|
90
99
|
- - ">="
|
91
100
|
- !ruby/object:Gem::Version
|
92
101
|
version: 1.10.0
|
102
|
+
- - "<"
|
103
|
+
- !ruby/object:Gem::Version
|
104
|
+
version: '1.65'
|
93
105
|
description: Adds Ruby support into Gauge tests
|
94
106
|
email:
|
95
107
|
- getgauge@googlegroups.com
|