gauge-ruby 0.5.2 → 0.5.3
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 +5 -5
- data/lib/code_parser.rb +1 -1
- data/lib/configuration.rb +30 -9
- data/lib/executor.rb +3 -2
- data/lib/gauge.rb +1 -2
- data/lib/gauge_runtime.rb +7 -53
- data/lib/gauge_screenshot.rb +13 -3
- data/lib/log.rb +29 -11
- data/lib/messages_pb.rb +272 -238
- data/lib/processors/cache_file_processor.rb +1 -6
- data/lib/processors/datastore_init_processor.rb +19 -14
- data/lib/processors/execute_step_request_processor.rb +5 -5
- data/lib/processors/execution_handler.rb +18 -19
- data/lib/processors/execution_hook_processors.rb +16 -40
- data/lib/processors/implementation_file_list_processor.rb +1 -6
- data/lib/processors/implementation_glob_pattern_processor.rb +1 -10
- data/lib/processors/refactor_step_request_processor.rb +1 -7
- data/lib/processors/step_name_request_processor.rb +2 -7
- data/lib/processors/step_names_request_processor.rb +1 -7
- data/lib/processors/step_positions_request_processor.rb +2 -7
- data/lib/processors/step_validation_request_processor.rb +1 -8
- data/lib/processors/stub_implementation_processor.rb +1 -6
- data/lib/service_handlers.rb +122 -0
- data/lib/{lsp_pb.rb → services_pb.rb} +2 -3
- data/lib/services_services_pb.rb +165 -0
- data/lib/spec_pb.rb +233 -198
- data/lib/static_loader.rb +2 -2
- data/lib/util.rb +24 -14
- metadata +48 -34
- data/lib/api_pb.rb +0 -182
- data/lib/connector.rb +0 -46
- data/lib/lsp_server.rb +0 -78
- data/lib/lsp_services_pb.rb +0 -51
- data/lib/message_processor.rb +0 -61
data/lib/static_loader.rb
CHANGED
@@ -64,7 +64,7 @@ module Gauge
|
|
64
64
|
load_aliases(file, node)
|
65
65
|
else
|
66
66
|
step_text = node.children[0].children[2].children[0]
|
67
|
-
step_value = Gauge::
|
67
|
+
step_value = Gauge::Util.step_value step_text
|
68
68
|
load_step(file, step_value, step_text, node, {recoverable: recoverable?(node)})
|
69
69
|
end
|
70
70
|
end
|
@@ -83,7 +83,7 @@ module Gauge
|
|
83
83
|
end
|
84
84
|
Gauge::MethodCache.add_step_alias(*aliases.map {|x| x.children[0]})
|
85
85
|
aliases.each {|x|
|
86
|
-
sv = Gauge::
|
86
|
+
sv = Gauge::Util.step_value x.children[0]
|
87
87
|
load_step(file, sv, x.children[0], node, {recoverable: recoverable})
|
88
88
|
}
|
89
89
|
end
|
data/lib/util.rb
CHANGED
@@ -17,22 +17,32 @@
|
|
17
17
|
|
18
18
|
module Gauge
|
19
19
|
class Util
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
20
|
+
class << self
|
21
|
+
def get_param_name(params, index)
|
22
|
+
name = "arg_#{index}"
|
23
|
+
return name unless params.include? name
|
24
|
+
get_param_name(params, index + 1)
|
25
|
+
end
|
25
26
|
|
26
|
-
|
27
|
-
|
28
|
-
|
27
|
+
def get_step_implementation_dir
|
28
|
+
return File.join(ENV["GAUGE_PROJECT_ROOT"].gsub(/\\/, "/"), "step_implementations")
|
29
|
+
end
|
30
|
+
|
31
|
+
def get_file_name(prefix = "", counter = 0)
|
32
|
+
name = "step_implementation#{prefix}.rb"
|
33
|
+
file_name = File.join(get_step_implementation_dir, name)
|
34
|
+
return file_name unless File.file? file_name
|
35
|
+
counter += 1
|
36
|
+
get_file_name("_#{counter}", counter)
|
37
|
+
end
|
29
38
|
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
39
|
+
def step_value(text)
|
40
|
+
text.gsub(/(<.*?>)/, "{}")
|
41
|
+
end
|
42
|
+
def unique_screenshot_file
|
43
|
+
base_name = "screenshot-#{Process.pid}-#{(Time.now.to_f*10000).to_i}.png"
|
44
|
+
File.join(ENV['gauge_screenshots_dir'],base_name)
|
45
|
+
end
|
36
46
|
end
|
37
47
|
end
|
38
48
|
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.5.
|
4
|
+
version: 0.5.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gauge Team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-03-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: ruby-protocol-buffers
|
@@ -16,28 +16,28 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 1.
|
19
|
+
version: 1.6.1
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - '='
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 1.
|
26
|
+
version: 1.6.1
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: os
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - '='
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 0.
|
33
|
+
version: 1.0.1
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - '='
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 0.
|
40
|
+
version: 1.0.1
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: parser
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -56,44 +56,62 @@ dependencies:
|
|
56
56
|
name: unparser
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
|
-
- - "
|
59
|
+
- - ">="
|
60
60
|
- !ruby/object:Gem::Version
|
61
61
|
version: 0.2.6
|
62
|
+
- - "<"
|
63
|
+
- !ruby/object:Gem::Version
|
64
|
+
version: 0.5.0
|
62
65
|
type: :runtime
|
63
66
|
prerelease: false
|
64
67
|
version_requirements: !ruby/object:Gem::Requirement
|
65
68
|
requirements:
|
66
|
-
- - "
|
69
|
+
- - ">="
|
67
70
|
- !ruby/object:Gem::Version
|
68
71
|
version: 0.2.6
|
72
|
+
- - "<"
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
version: 0.5.0
|
69
75
|
- !ruby/object:Gem::Dependency
|
70
76
|
name: method_source
|
71
77
|
requirement: !ruby/object:Gem::Requirement
|
72
78
|
requirements:
|
73
|
-
- - "
|
79
|
+
- - ">="
|
74
80
|
- !ruby/object:Gem::Version
|
75
81
|
version: 0.8.2
|
82
|
+
- - "<"
|
83
|
+
- !ruby/object:Gem::Version
|
84
|
+
version: 0.10.0
|
76
85
|
type: :runtime
|
77
86
|
prerelease: false
|
78
87
|
version_requirements: !ruby/object:Gem::Requirement
|
79
88
|
requirements:
|
80
|
-
- - "
|
89
|
+
- - ">="
|
81
90
|
- !ruby/object:Gem::Version
|
82
91
|
version: 0.8.2
|
92
|
+
- - "<"
|
93
|
+
- !ruby/object:Gem::Version
|
94
|
+
version: 0.10.0
|
83
95
|
- !ruby/object:Gem::Dependency
|
84
96
|
name: ruby-debug-ide
|
85
97
|
requirement: !ruby/object:Gem::Requirement
|
86
98
|
requirements:
|
87
|
-
- - "
|
99
|
+
- - ">="
|
88
100
|
- !ruby/object:Gem::Version
|
89
|
-
version: 0.6
|
101
|
+
version: '0.6'
|
102
|
+
- - "<"
|
103
|
+
- !ruby/object:Gem::Version
|
104
|
+
version: '0.8'
|
90
105
|
type: :runtime
|
91
106
|
prerelease: false
|
92
107
|
version_requirements: !ruby/object:Gem::Requirement
|
93
108
|
requirements:
|
94
|
-
- - "
|
109
|
+
- - ">="
|
110
|
+
- !ruby/object:Gem::Version
|
111
|
+
version: '0.6'
|
112
|
+
- - "<"
|
95
113
|
- !ruby/object:Gem::Version
|
96
|
-
version: 0.
|
114
|
+
version: '0.8'
|
97
115
|
- !ruby/object:Gem::Dependency
|
98
116
|
name: debase
|
99
117
|
requirement: !ruby/object:Gem::Requirement
|
@@ -112,42 +130,42 @@ dependencies:
|
|
112
130
|
name: grpc
|
113
131
|
requirement: !ruby/object:Gem::Requirement
|
114
132
|
requirements:
|
115
|
-
- - "~>"
|
116
|
-
- !ruby/object:Gem::Version
|
117
|
-
version: '1.10'
|
118
133
|
- - ">="
|
119
134
|
- !ruby/object:Gem::Version
|
120
135
|
version: 1.10.0
|
136
|
+
- - "~>"
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: '1.10'
|
121
139
|
type: :runtime
|
122
140
|
prerelease: false
|
123
141
|
version_requirements: !ruby/object:Gem::Requirement
|
124
142
|
requirements:
|
125
|
-
- - "~>"
|
126
|
-
- !ruby/object:Gem::Version
|
127
|
-
version: '1.10'
|
128
143
|
- - ">="
|
129
144
|
- !ruby/object:Gem::Version
|
130
145
|
version: 1.10.0
|
146
|
+
- - "~>"
|
147
|
+
- !ruby/object:Gem::Version
|
148
|
+
version: '1.10'
|
131
149
|
- !ruby/object:Gem::Dependency
|
132
150
|
name: grpc-tools
|
133
151
|
requirement: !ruby/object:Gem::Requirement
|
134
152
|
requirements:
|
135
|
-
- - "~>"
|
136
|
-
- !ruby/object:Gem::Version
|
137
|
-
version: '1.10'
|
138
153
|
- - ">="
|
139
154
|
- !ruby/object:Gem::Version
|
140
155
|
version: 1.10.0
|
156
|
+
- - "~>"
|
157
|
+
- !ruby/object:Gem::Version
|
158
|
+
version: '1.10'
|
141
159
|
type: :development
|
142
160
|
prerelease: false
|
143
161
|
version_requirements: !ruby/object:Gem::Requirement
|
144
162
|
requirements:
|
145
|
-
- - "~>"
|
146
|
-
- !ruby/object:Gem::Version
|
147
|
-
version: '1.10'
|
148
163
|
- - ">="
|
149
164
|
- !ruby/object:Gem::Version
|
150
165
|
version: 1.10.0
|
166
|
+
- - "~>"
|
167
|
+
- !ruby/object:Gem::Version
|
168
|
+
version: '1.10'
|
151
169
|
description: Adds Ruby support into Gauge tests
|
152
170
|
email:
|
153
171
|
- gauge@thoughtworks.com
|
@@ -155,10 +173,8 @@ executables: []
|
|
155
173
|
extensions: []
|
156
174
|
extra_rdoc_files: []
|
157
175
|
files:
|
158
|
-
- lib/api_pb.rb
|
159
176
|
- lib/code_parser.rb
|
160
177
|
- lib/configuration.rb
|
161
|
-
- lib/connector.rb
|
162
178
|
- lib/datastore.rb
|
163
179
|
- lib/executor.rb
|
164
180
|
- lib/gauge.rb
|
@@ -166,10 +182,6 @@ files:
|
|
166
182
|
- lib/gauge_runtime.rb
|
167
183
|
- lib/gauge_screenshot.rb
|
168
184
|
- lib/log.rb
|
169
|
-
- lib/lsp_pb.rb
|
170
|
-
- lib/lsp_server.rb
|
171
|
-
- lib/lsp_services_pb.rb
|
172
|
-
- lib/message_processor.rb
|
173
185
|
- lib/messages_pb.rb
|
174
186
|
- lib/method_cache.rb
|
175
187
|
- lib/processors/cache_file_processor.rb
|
@@ -186,6 +198,9 @@ files:
|
|
186
198
|
- lib/processors/step_positions_request_processor.rb
|
187
199
|
- lib/processors/step_validation_request_processor.rb
|
188
200
|
- lib/processors/stub_implementation_processor.rb
|
201
|
+
- lib/service_handlers.rb
|
202
|
+
- lib/services_pb.rb
|
203
|
+
- lib/services_services_pb.rb
|
189
204
|
- lib/spec_pb.rb
|
190
205
|
- lib/static_loader.rb
|
191
206
|
- lib/table.rb
|
@@ -209,8 +224,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
209
224
|
- !ruby/object:Gem::Version
|
210
225
|
version: '1.9'
|
211
226
|
requirements: []
|
212
|
-
|
213
|
-
rubygems_version: 2.5.1
|
227
|
+
rubygems_version: 3.0.3
|
214
228
|
signing_key:
|
215
229
|
specification_version: 4
|
216
230
|
summary: Ruby support for Gauge
|
data/lib/api_pb.rb
DELETED
@@ -1,182 +0,0 @@
|
|
1
|
-
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
|
-
# source: api.proto
|
3
|
-
|
4
|
-
require 'google/protobuf'
|
5
|
-
|
6
|
-
require 'spec_pb'
|
7
|
-
Google::Protobuf::DescriptorPool.generated_pool.build do
|
8
|
-
add_message "gauge.messages.GetProjectRootRequest" do
|
9
|
-
end
|
10
|
-
add_message "gauge.messages.GetProjectRootResponse" do
|
11
|
-
optional :projectRoot, :string, 1
|
12
|
-
end
|
13
|
-
add_message "gauge.messages.GetInstallationRootRequest" do
|
14
|
-
end
|
15
|
-
add_message "gauge.messages.GetInstallationRootResponse" do
|
16
|
-
optional :installationRoot, :string, 1
|
17
|
-
end
|
18
|
-
add_message "gauge.messages.GetAllStepsRequest" do
|
19
|
-
end
|
20
|
-
add_message "gauge.messages.GetAllStepsResponse" do
|
21
|
-
repeated :allSteps, :message, 1, "gauge.messages.ProtoStepValue"
|
22
|
-
end
|
23
|
-
add_message "gauge.messages.SpecsRequest" do
|
24
|
-
repeated :specs, :string, 1
|
25
|
-
end
|
26
|
-
add_message "gauge.messages.SpecsResponse" do
|
27
|
-
repeated :details, :message, 1, "gauge.messages.SpecsResponse.SpecDetail"
|
28
|
-
end
|
29
|
-
add_message "gauge.messages.SpecsResponse.SpecDetail" do
|
30
|
-
optional :spec, :message, 1, "gauge.messages.ProtoSpec"
|
31
|
-
repeated :parseErrors, :message, 2, "gauge.messages.Error"
|
32
|
-
end
|
33
|
-
add_message "gauge.messages.GetAllConceptsRequest" do
|
34
|
-
end
|
35
|
-
add_message "gauge.messages.GetAllConceptsResponse" do
|
36
|
-
repeated :concepts, :message, 1, "gauge.messages.ConceptInfo"
|
37
|
-
end
|
38
|
-
add_message "gauge.messages.ConceptInfo" do
|
39
|
-
optional :stepValue, :message, 1, "gauge.messages.ProtoStepValue"
|
40
|
-
optional :filepath, :string, 2
|
41
|
-
optional :lineNumber, :int32, 3
|
42
|
-
end
|
43
|
-
add_message "gauge.messages.GetStepValueRequest" do
|
44
|
-
optional :stepText, :string, 1
|
45
|
-
optional :hasInlineTable, :bool, 2
|
46
|
-
end
|
47
|
-
add_message "gauge.messages.GetStepValueResponse" do
|
48
|
-
optional :stepValue, :message, 1, "gauge.messages.ProtoStepValue"
|
49
|
-
end
|
50
|
-
add_message "gauge.messages.GetLanguagePluginLibPathRequest" do
|
51
|
-
optional :language, :string, 1
|
52
|
-
end
|
53
|
-
add_message "gauge.messages.GetLanguagePluginLibPathResponse" do
|
54
|
-
optional :path, :string, 1
|
55
|
-
end
|
56
|
-
add_message "gauge.messages.ErrorResponse" do
|
57
|
-
optional :error, :string, 1
|
58
|
-
end
|
59
|
-
add_message "gauge.messages.PerformRefactoringRequest" do
|
60
|
-
optional :oldStep, :string, 1
|
61
|
-
optional :newStep, :string, 2
|
62
|
-
end
|
63
|
-
add_message "gauge.messages.PerformRefactoringResponse" do
|
64
|
-
optional :success, :bool, 1
|
65
|
-
repeated :errors, :string, 2
|
66
|
-
repeated :filesChanged, :string, 3
|
67
|
-
end
|
68
|
-
add_message "gauge.messages.ExtractConceptRequest" do
|
69
|
-
optional :conceptName, :message, 1, "gauge.messages.step"
|
70
|
-
repeated :steps, :message, 2, "gauge.messages.step"
|
71
|
-
optional :changeAcrossProject, :bool, 3
|
72
|
-
optional :conceptFileName, :string, 4
|
73
|
-
optional :selectedTextInfo, :message, 5, "gauge.messages.textInfo"
|
74
|
-
end
|
75
|
-
add_message "gauge.messages.textInfo" do
|
76
|
-
optional :fileName, :string, 1
|
77
|
-
optional :startingLineNo, :int32, 2
|
78
|
-
optional :endLineNo, :int32, 3
|
79
|
-
end
|
80
|
-
add_message "gauge.messages.step" do
|
81
|
-
optional :name, :string, 1
|
82
|
-
optional :table, :string, 2
|
83
|
-
optional :paramTableName, :string, 3
|
84
|
-
end
|
85
|
-
add_message "gauge.messages.ExtractConceptResponse" do
|
86
|
-
optional :isSuccess, :bool, 1
|
87
|
-
optional :error, :string, 2
|
88
|
-
repeated :filesChanged, :string, 3
|
89
|
-
end
|
90
|
-
add_message "gauge.messages.FormatSpecsRequest" do
|
91
|
-
repeated :specs, :string, 1
|
92
|
-
end
|
93
|
-
add_message "gauge.messages.FormatSpecsResponse" do
|
94
|
-
repeated :errors, :string, 1
|
95
|
-
repeated :warnings, :string, 2
|
96
|
-
end
|
97
|
-
add_message "gauge.messages.UnsupportedApiMessageResponse" do
|
98
|
-
end
|
99
|
-
add_message "gauge.messages.APIMessage" do
|
100
|
-
optional :messageType, :enum, 1, "gauge.messages.APIMessage.APIMessageType"
|
101
|
-
optional :messageId, :int64, 2
|
102
|
-
optional :projectRootRequest, :message, 3, "gauge.messages.GetProjectRootRequest"
|
103
|
-
optional :projectRootResponse, :message, 4, "gauge.messages.GetProjectRootResponse"
|
104
|
-
optional :installationRootRequest, :message, 5, "gauge.messages.GetInstallationRootRequest"
|
105
|
-
optional :installationRootResponse, :message, 6, "gauge.messages.GetInstallationRootResponse"
|
106
|
-
optional :allStepsRequest, :message, 7, "gauge.messages.GetAllStepsRequest"
|
107
|
-
optional :allStepsResponse, :message, 8, "gauge.messages.GetAllStepsResponse"
|
108
|
-
optional :specsRequest, :message, 9, "gauge.messages.SpecsRequest"
|
109
|
-
optional :specsResponse, :message, 10, "gauge.messages.SpecsResponse"
|
110
|
-
optional :stepValueRequest, :message, 11, "gauge.messages.GetStepValueRequest"
|
111
|
-
optional :stepValueResponse, :message, 12, "gauge.messages.GetStepValueResponse"
|
112
|
-
optional :libPathRequest, :message, 13, "gauge.messages.GetLanguagePluginLibPathRequest"
|
113
|
-
optional :libPathResponse, :message, 14, "gauge.messages.GetLanguagePluginLibPathResponse"
|
114
|
-
optional :error, :message, 15, "gauge.messages.ErrorResponse"
|
115
|
-
optional :allConceptsRequest, :message, 16, "gauge.messages.GetAllConceptsRequest"
|
116
|
-
optional :allConceptsResponse, :message, 17, "gauge.messages.GetAllConceptsResponse"
|
117
|
-
optional :performRefactoringRequest, :message, 18, "gauge.messages.PerformRefactoringRequest"
|
118
|
-
optional :performRefactoringResponse, :message, 19, "gauge.messages.PerformRefactoringResponse"
|
119
|
-
optional :extractConceptRequest, :message, 20, "gauge.messages.ExtractConceptRequest"
|
120
|
-
optional :extractConceptResponse, :message, 21, "gauge.messages.ExtractConceptResponse"
|
121
|
-
optional :formatSpecsRequest, :message, 22, "gauge.messages.FormatSpecsRequest"
|
122
|
-
optional :formatSpecsResponse, :message, 23, "gauge.messages.FormatSpecsResponse"
|
123
|
-
optional :unsupportedApiMessageResponse, :message, 24, "gauge.messages.UnsupportedApiMessageResponse"
|
124
|
-
end
|
125
|
-
add_enum "gauge.messages.APIMessage.APIMessageType" do
|
126
|
-
value :GetProjectRootRequest, 0
|
127
|
-
value :GetProjectRootResponse, 1
|
128
|
-
value :GetInstallationRootRequest, 2
|
129
|
-
value :GetInstallationRootResponse, 3
|
130
|
-
value :GetAllStepsRequest, 4
|
131
|
-
value :GetAllStepResponse, 5
|
132
|
-
value :SpecsRequest, 6
|
133
|
-
value :SpecsResponse, 7
|
134
|
-
value :GetStepValueRequest, 8
|
135
|
-
value :GetStepValueResponse, 9
|
136
|
-
value :GetLanguagePluginLibPathRequest, 10
|
137
|
-
value :GetLanguagePluginLibPathResponse, 11
|
138
|
-
value :ErrorResponse, 12
|
139
|
-
value :GetAllConceptsRequest, 13
|
140
|
-
value :GetAllConceptsResponse, 14
|
141
|
-
value :PerformRefactoringRequest, 15
|
142
|
-
value :PerformRefactoringResponse, 16
|
143
|
-
value :ExtractConceptRequest, 17
|
144
|
-
value :ExtractConceptResponse, 18
|
145
|
-
value :FormatSpecsRequest, 19
|
146
|
-
value :FormatSpecsResponse, 20
|
147
|
-
value :UnsupportedApiMessageResponse, 21
|
148
|
-
end
|
149
|
-
end
|
150
|
-
|
151
|
-
module Gauge
|
152
|
-
module Messages
|
153
|
-
GetProjectRootRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.GetProjectRootRequest").msgclass
|
154
|
-
GetProjectRootResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.GetProjectRootResponse").msgclass
|
155
|
-
GetInstallationRootRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.GetInstallationRootRequest").msgclass
|
156
|
-
GetInstallationRootResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.GetInstallationRootResponse").msgclass
|
157
|
-
GetAllStepsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.GetAllStepsRequest").msgclass
|
158
|
-
GetAllStepsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.GetAllStepsResponse").msgclass
|
159
|
-
SpecsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.SpecsRequest").msgclass
|
160
|
-
SpecsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.SpecsResponse").msgclass
|
161
|
-
SpecsResponse::SpecDetail = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.SpecsResponse.SpecDetail").msgclass
|
162
|
-
GetAllConceptsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.GetAllConceptsRequest").msgclass
|
163
|
-
GetAllConceptsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.GetAllConceptsResponse").msgclass
|
164
|
-
ConceptInfo = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ConceptInfo").msgclass
|
165
|
-
GetStepValueRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.GetStepValueRequest").msgclass
|
166
|
-
GetStepValueResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.GetStepValueResponse").msgclass
|
167
|
-
GetLanguagePluginLibPathRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.GetLanguagePluginLibPathRequest").msgclass
|
168
|
-
GetLanguagePluginLibPathResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.GetLanguagePluginLibPathResponse").msgclass
|
169
|
-
ErrorResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ErrorResponse").msgclass
|
170
|
-
PerformRefactoringRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.PerformRefactoringRequest").msgclass
|
171
|
-
PerformRefactoringResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.PerformRefactoringResponse").msgclass
|
172
|
-
ExtractConceptRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ExtractConceptRequest").msgclass
|
173
|
-
TextInfo = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.textInfo").msgclass
|
174
|
-
Step = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.step").msgclass
|
175
|
-
ExtractConceptResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.ExtractConceptResponse").msgclass
|
176
|
-
FormatSpecsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.FormatSpecsRequest").msgclass
|
177
|
-
FormatSpecsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.FormatSpecsResponse").msgclass
|
178
|
-
UnsupportedApiMessageResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.UnsupportedApiMessageResponse").msgclass
|
179
|
-
APIMessage = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.APIMessage").msgclass
|
180
|
-
APIMessage::APIMessageType = Google::Protobuf::DescriptorPool.generated_pool.lookup("gauge.messages.APIMessage.APIMessageType").enummodule
|
181
|
-
end
|
182
|
-
end
|