zeebe-client 0.5.0 → 0.6.0
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/.travis.yml +1 -0
- data/CHANGELOG.md +5 -0
- data/README.md +1 -1
- data/Rakefile +1 -1
- data/lib/zeebe/client/proto/gateway_pb.rb +131 -151
- data/lib/zeebe/client/proto/gateway_services_pb.rb +0 -18
- data/lib/zeebe/client/version.rb +1 -1
- data/proto/gateway.proto +0 -59
- data/spec/integration/client_spec.rb +0 -5
- data/zeebe-client.gemspec +3 -3
- metadata +16 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ca27316cd57ca58b36aa80ddd9e2e930c28ddaef950adb0054203d8ab4e8ab85
|
4
|
+
data.tar.gz: 47f87275239463c74f1654037a9990ff6806e4a6dc5991248458c447be4f810b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a4392cd8bacbb7abd71044acee7a3b1559a621ed9221b1efe870bf2770c7c252488d68edc0261008319130c9e067036bc84556ea960eaeb4901044678e7e62a6
|
7
|
+
data.tar.gz: 77b7eef482387cbbc22dea3e3accfbb9f1becb89b347e9f0cb7a01374f7a611f55d19fb4369b7a6e31a9181f428d3d5f04ad6dadc8e980d06a8abe7619586073
|
data/.travis.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 0.6.0 (June 7, 2019)
|
4
|
+
|
5
|
+
- support Ruby 2.6
|
6
|
+
- add support for [Zeebe 0.18.0](https://github.com/zeebe-io/zeebe/releases/tag/0.18.0)
|
7
|
+
|
3
8
|
## 0.5.0 (April 2, 2019)
|
4
9
|
|
5
10
|
- add support for [Zeebe 0.17.0](https://github.com/zeebe-io/zeebe/releases/tag/0.17.0)
|
data/README.md
CHANGED
data/Rakefile
CHANGED
@@ -13,7 +13,7 @@ task travis: ['zeebe:start', :default, 'zeebe:stop']
|
|
13
13
|
|
14
14
|
desc 'Starts Zeebe Docker container'
|
15
15
|
task 'zeebe:start' do
|
16
|
-
sh 'docker run -d --name zeebe --rm -p 26500:26500 camunda/zeebe:0.
|
16
|
+
sh 'docker run -d --name zeebe --rm -p 26500:26500 camunda/zeebe:0.18.0'
|
17
17
|
sleep(5)
|
18
18
|
end
|
19
19
|
|
@@ -4,153 +4,137 @@
|
|
4
4
|
require 'google/protobuf'
|
5
5
|
|
6
6
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
add_enum "gateway_protocol.Partition.PartitionBrokerRole" do
|
139
|
-
value :LEADER, 0
|
140
|
-
value :FOLLOWER, 1
|
141
|
-
end
|
142
|
-
add_message "gateway_protocol.UpdateJobRetriesRequest" do
|
143
|
-
optional :jobKey, :int64, 1
|
144
|
-
optional :retries, :int32, 2
|
145
|
-
end
|
146
|
-
add_message "gateway_protocol.UpdateJobRetriesResponse" do
|
147
|
-
end
|
148
|
-
add_message "gateway_protocol.SetVariablesRequest" do
|
149
|
-
optional :elementInstanceKey, :int64, 1
|
150
|
-
optional :variables, :string, 2
|
151
|
-
optional :local, :bool, 3
|
152
|
-
end
|
153
|
-
add_message "gateway_protocol.SetVariablesResponse" do
|
7
|
+
add_file("proto/gateway.proto", :syntax => :proto3) do
|
8
|
+
add_message "gateway_protocol.ActivateJobsRequest" do
|
9
|
+
optional :type, :string, 1
|
10
|
+
optional :worker, :string, 2
|
11
|
+
optional :timeout, :int64, 3
|
12
|
+
optional :maxJobsToActivate, :int32, 4
|
13
|
+
repeated :fetchVariable, :string, 5
|
14
|
+
end
|
15
|
+
add_message "gateway_protocol.ActivateJobsResponse" do
|
16
|
+
repeated :jobs, :message, 1, "gateway_protocol.ActivatedJob"
|
17
|
+
end
|
18
|
+
add_message "gateway_protocol.ActivatedJob" do
|
19
|
+
optional :key, :int64, 1
|
20
|
+
optional :type, :string, 2
|
21
|
+
optional :jobHeaders, :message, 3, "gateway_protocol.JobHeaders"
|
22
|
+
optional :customHeaders, :string, 4
|
23
|
+
optional :worker, :string, 5
|
24
|
+
optional :retries, :int32, 6
|
25
|
+
optional :deadline, :int64, 7
|
26
|
+
optional :variables, :string, 8
|
27
|
+
end
|
28
|
+
add_message "gateway_protocol.JobHeaders" do
|
29
|
+
optional :workflowInstanceKey, :int64, 1
|
30
|
+
optional :bpmnProcessId, :string, 2
|
31
|
+
optional :workflowDefinitionVersion, :int32, 3
|
32
|
+
optional :workflowKey, :int64, 4
|
33
|
+
optional :elementId, :string, 5
|
34
|
+
optional :elementInstanceKey, :int64, 6
|
35
|
+
end
|
36
|
+
add_message "gateway_protocol.CancelWorkflowInstanceRequest" do
|
37
|
+
optional :workflowInstanceKey, :int64, 1
|
38
|
+
end
|
39
|
+
add_message "gateway_protocol.CancelWorkflowInstanceResponse" do
|
40
|
+
end
|
41
|
+
add_message "gateway_protocol.CompleteJobRequest" do
|
42
|
+
optional :jobKey, :int64, 1
|
43
|
+
optional :variables, :string, 2
|
44
|
+
end
|
45
|
+
add_message "gateway_protocol.CompleteJobResponse" do
|
46
|
+
end
|
47
|
+
add_message "gateway_protocol.CreateWorkflowInstanceRequest" do
|
48
|
+
optional :workflowKey, :int64, 1
|
49
|
+
optional :bpmnProcessId, :string, 2
|
50
|
+
optional :version, :int32, 3
|
51
|
+
optional :variables, :string, 4
|
52
|
+
end
|
53
|
+
add_message "gateway_protocol.CreateWorkflowInstanceResponse" do
|
54
|
+
optional :workflowKey, :int64, 1
|
55
|
+
optional :bpmnProcessId, :string, 2
|
56
|
+
optional :version, :int32, 3
|
57
|
+
optional :workflowInstanceKey, :int64, 5
|
58
|
+
end
|
59
|
+
add_message "gateway_protocol.DeployWorkflowRequest" do
|
60
|
+
repeated :workflows, :message, 1, "gateway_protocol.WorkflowRequestObject"
|
61
|
+
end
|
62
|
+
add_message "gateway_protocol.WorkflowRequestObject" do
|
63
|
+
optional :name, :string, 1
|
64
|
+
optional :type, :enum, 2, "gateway_protocol.WorkflowRequestObject.ResourceType"
|
65
|
+
optional :definition, :bytes, 3
|
66
|
+
end
|
67
|
+
add_enum "gateway_protocol.WorkflowRequestObject.ResourceType" do
|
68
|
+
value :FILE, 0
|
69
|
+
value :BPMN, 1
|
70
|
+
value :YAML, 2
|
71
|
+
end
|
72
|
+
add_message "gateway_protocol.DeployWorkflowResponse" do
|
73
|
+
optional :key, :int64, 1
|
74
|
+
repeated :workflows, :message, 2, "gateway_protocol.WorkflowMetadata"
|
75
|
+
end
|
76
|
+
add_message "gateway_protocol.WorkflowMetadata" do
|
77
|
+
optional :bpmnProcessId, :string, 1
|
78
|
+
optional :version, :int32, 2
|
79
|
+
optional :workflowKey, :int64, 3
|
80
|
+
optional :resourceName, :string, 4
|
81
|
+
end
|
82
|
+
add_message "gateway_protocol.FailJobRequest" do
|
83
|
+
optional :jobKey, :int64, 1
|
84
|
+
optional :retries, :int32, 2
|
85
|
+
optional :errorMessage, :string, 3
|
86
|
+
end
|
87
|
+
add_message "gateway_protocol.FailJobResponse" do
|
88
|
+
end
|
89
|
+
add_message "gateway_protocol.PublishMessageRequest" do
|
90
|
+
optional :name, :string, 1
|
91
|
+
optional :correlationKey, :string, 2
|
92
|
+
optional :timeToLive, :int64, 3
|
93
|
+
optional :messageId, :string, 4
|
94
|
+
optional :variables, :string, 5
|
95
|
+
end
|
96
|
+
add_message "gateway_protocol.PublishMessageResponse" do
|
97
|
+
end
|
98
|
+
add_message "gateway_protocol.ResolveIncidentRequest" do
|
99
|
+
optional :incidentKey, :int64, 1
|
100
|
+
end
|
101
|
+
add_message "gateway_protocol.ResolveIncidentResponse" do
|
102
|
+
end
|
103
|
+
add_message "gateway_protocol.TopologyRequest" do
|
104
|
+
end
|
105
|
+
add_message "gateway_protocol.TopologyResponse" do
|
106
|
+
repeated :brokers, :message, 1, "gateway_protocol.BrokerInfo"
|
107
|
+
optional :clusterSize, :int32, 2
|
108
|
+
optional :partitionsCount, :int32, 3
|
109
|
+
optional :replicationFactor, :int32, 4
|
110
|
+
end
|
111
|
+
add_message "gateway_protocol.BrokerInfo" do
|
112
|
+
optional :nodeId, :int32, 1
|
113
|
+
optional :host, :string, 2
|
114
|
+
optional :port, :int32, 3
|
115
|
+
repeated :partitions, :message, 4, "gateway_protocol.Partition"
|
116
|
+
end
|
117
|
+
add_message "gateway_protocol.Partition" do
|
118
|
+
optional :partitionId, :int32, 1
|
119
|
+
optional :role, :enum, 3, "gateway_protocol.Partition.PartitionBrokerRole"
|
120
|
+
end
|
121
|
+
add_enum "gateway_protocol.Partition.PartitionBrokerRole" do
|
122
|
+
value :LEADER, 0
|
123
|
+
value :FOLLOWER, 1
|
124
|
+
end
|
125
|
+
add_message "gateway_protocol.UpdateJobRetriesRequest" do
|
126
|
+
optional :jobKey, :int64, 1
|
127
|
+
optional :retries, :int32, 2
|
128
|
+
end
|
129
|
+
add_message "gateway_protocol.UpdateJobRetriesResponse" do
|
130
|
+
end
|
131
|
+
add_message "gateway_protocol.SetVariablesRequest" do
|
132
|
+
optional :elementInstanceKey, :int64, 1
|
133
|
+
optional :variables, :string, 2
|
134
|
+
optional :local, :bool, 3
|
135
|
+
end
|
136
|
+
add_message "gateway_protocol.SetVariablesResponse" do
|
137
|
+
end
|
154
138
|
end
|
155
139
|
end
|
156
140
|
|
@@ -172,10 +156,6 @@ module Zeebe::Client::GatewayProtocol
|
|
172
156
|
WorkflowMetadata = Google::Protobuf::DescriptorPool.generated_pool.lookup("gateway_protocol.WorkflowMetadata").msgclass
|
173
157
|
FailJobRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gateway_protocol.FailJobRequest").msgclass
|
174
158
|
FailJobResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gateway_protocol.FailJobResponse").msgclass
|
175
|
-
GetWorkflowRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gateway_protocol.GetWorkflowRequest").msgclass
|
176
|
-
GetWorkflowResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gateway_protocol.GetWorkflowResponse").msgclass
|
177
|
-
ListWorkflowsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gateway_protocol.ListWorkflowsRequest").msgclass
|
178
|
-
ListWorkflowsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gateway_protocol.ListWorkflowsResponse").msgclass
|
179
159
|
PublishMessageRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gateway_protocol.PublishMessageRequest").msgclass
|
180
160
|
PublishMessageResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gateway_protocol.PublishMessageResponse").msgclass
|
181
161
|
ResolveIncidentRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gateway_protocol.ResolveIncidentRequest").msgclass
|
@@ -92,24 +92,6 @@ module Zeebe::Client::GatewayProtocol
|
|
92
92
|
# - the job is already in a failed state, i.e. ran out of retries
|
93
93
|
rpc :FailJob, FailJobRequest, FailJobResponse
|
94
94
|
#
|
95
|
-
# Fetches the workflow definition either by workflow key, or BPMN process ID and version.
|
96
|
-
# At least one of workflowKey or bpmnProcessId must be specified.
|
97
|
-
#
|
98
|
-
# Errors:
|
99
|
-
# NOT_FOUND:
|
100
|
-
# - no workflow with the given key exists (if workflowKey was given)
|
101
|
-
# - no workflow with the given process ID exists (if bpmnProcessId was given but version was -1)
|
102
|
-
# - no workflow with the given process ID and version exists (if both bpmnProcessId and version were given)
|
103
|
-
rpc :GetWorkflow, GetWorkflowRequest, GetWorkflowResponse
|
104
|
-
#
|
105
|
-
# Lists all workflows matching the request criteria currently deployed in the cluster.
|
106
|
-
#
|
107
|
-
# Errors:
|
108
|
-
# NOT_FOUND:
|
109
|
-
# - no workflows have been deployed yet (if no bpmnProcessId was given)
|
110
|
-
# - no workflow with the given process ID exists (if bpmnProcessId was given)
|
111
|
-
rpc :ListWorkflows, ListWorkflowsRequest, ListWorkflowsResponse
|
112
|
-
#
|
113
95
|
# Publishes a single message. Messages are published to specific partitions computed from their
|
114
96
|
# correlation keys.
|
115
97
|
#
|
data/lib/zeebe/client/version.rb
CHANGED
data/proto/gateway.proto
CHANGED
@@ -171,41 +171,6 @@ message FailJobRequest {
|
|
171
171
|
message FailJobResponse {
|
172
172
|
}
|
173
173
|
|
174
|
-
message GetWorkflowRequest {
|
175
|
-
// the unique key identifying the workflow definition (e.g. returned from a workflow in
|
176
|
-
// the DeployWorkflowResponse message)
|
177
|
-
int64 workflowKey = 1;
|
178
|
-
// the version of the process; set to -1 to use the latest version
|
179
|
-
int32 version = 2;
|
180
|
-
// the BPMN process ID of the workflow definition
|
181
|
-
string bpmnProcessId = 3;
|
182
|
-
}
|
183
|
-
|
184
|
-
message GetWorkflowResponse {
|
185
|
-
// the unique key identifying the workflow definition (e.g. returned from a workflow in
|
186
|
-
// the DeployWorkflowResponse message)
|
187
|
-
int64 workflowKey = 1;
|
188
|
-
// the version of the process
|
189
|
-
int32 version = 2;
|
190
|
-
// the BPMN process ID of the workflow definition
|
191
|
-
string bpmnProcessId = 3;
|
192
|
-
// the name of the resource used to deployed the workflow
|
193
|
-
string resourceName = 4;
|
194
|
-
// a BPMN XML representation of the workflow
|
195
|
-
string bpmnXml = 5;
|
196
|
-
}
|
197
|
-
|
198
|
-
message ListWorkflowsRequest {
|
199
|
-
// optional filter: if specified, only the workflows with this given process ID will be
|
200
|
-
// returned
|
201
|
-
string bpmnProcessId = 1;
|
202
|
-
}
|
203
|
-
|
204
|
-
message ListWorkflowsResponse {
|
205
|
-
// a list of deployed workflows matching the request criteria (if any)
|
206
|
-
repeated WorkflowMetadata workflows = 1;
|
207
|
-
}
|
208
|
-
|
209
174
|
message PublishMessageRequest {
|
210
175
|
// the name of the message
|
211
176
|
string name = 1;
|
@@ -396,30 +361,6 @@ service Gateway {
|
|
396
361
|
rpc FailJob (FailJobRequest) returns (FailJobResponse) {
|
397
362
|
}
|
398
363
|
|
399
|
-
/*
|
400
|
-
Fetches the workflow definition either by workflow key, or BPMN process ID and version.
|
401
|
-
At least one of workflowKey or bpmnProcessId must be specified.
|
402
|
-
|
403
|
-
Errors:
|
404
|
-
NOT_FOUND:
|
405
|
-
- no workflow with the given key exists (if workflowKey was given)
|
406
|
-
- no workflow with the given process ID exists (if bpmnProcessId was given but version was -1)
|
407
|
-
- no workflow with the given process ID and version exists (if both bpmnProcessId and version were given)
|
408
|
-
*/
|
409
|
-
rpc GetWorkflow (GetWorkflowRequest) returns (GetWorkflowResponse) {
|
410
|
-
}
|
411
|
-
|
412
|
-
/*
|
413
|
-
Lists all workflows matching the request criteria currently deployed in the cluster.
|
414
|
-
|
415
|
-
Errors:
|
416
|
-
NOT_FOUND:
|
417
|
-
- no workflows have been deployed yet (if no bpmnProcessId was given)
|
418
|
-
- no workflow with the given process ID exists (if bpmnProcessId was given)
|
419
|
-
*/
|
420
|
-
rpc ListWorkflows (ListWorkflowsRequest) returns (ListWorkflowsResponse) {
|
421
|
-
}
|
422
|
-
|
423
364
|
/*
|
424
365
|
Publishes a single message. Messages are published to specific partitions computed from their
|
425
366
|
correlation keys.
|
@@ -12,9 +12,4 @@ describe Zeebe::Client do
|
|
12
12
|
expect(topology.clusterSize).to eq(1)
|
13
13
|
expect(topology.replicationFactor).to eq(1)
|
14
14
|
end
|
15
|
-
|
16
|
-
it 'lists workflows' do
|
17
|
-
workflows = client.list_workflows(Zeebe::Client::GatewayProtocol::ListWorkflowsRequest.new).workflows
|
18
|
-
expect(workflows).to eq([])
|
19
|
-
end
|
20
15
|
end
|
data/zeebe-client.gemspec
CHANGED
@@ -19,12 +19,12 @@ Gem::Specification.new do |s|
|
|
19
19
|
|
20
20
|
s.required_ruby_version = '>= 2.3'
|
21
21
|
|
22
|
-
s.add_runtime_dependency 'grpc', '
|
22
|
+
s.add_runtime_dependency 'grpc', '>= 1.19', '< 1.21'
|
23
23
|
|
24
|
-
s.add_development_dependency 'grpc-tools', '~> 1.
|
24
|
+
s.add_development_dependency 'grpc-tools', '~> 1.20.0'
|
25
25
|
s.add_development_dependency 'bundler'
|
26
26
|
s.add_development_dependency 'rake'
|
27
27
|
s.add_development_dependency 'rspec'
|
28
|
-
s.add_development_dependency 'rubocop', '~> 0.
|
28
|
+
s.add_development_dependency 'rubocop', '~> 0.70.0'
|
29
29
|
s.add_development_dependency 'bundler-audit'
|
30
30
|
end
|
metadata
CHANGED
@@ -1,43 +1,49 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: zeebe-client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Christian Nicolai
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-06-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: grpc
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.19'
|
20
|
+
- - "<"
|
18
21
|
- !ruby/object:Gem::Version
|
19
|
-
version: 1.
|
22
|
+
version: '1.21'
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
|
-
- - "
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '1.19'
|
30
|
+
- - "<"
|
25
31
|
- !ruby/object:Gem::Version
|
26
|
-
version: 1.
|
32
|
+
version: '1.21'
|
27
33
|
- !ruby/object:Gem::Dependency
|
28
34
|
name: grpc-tools
|
29
35
|
requirement: !ruby/object:Gem::Requirement
|
30
36
|
requirements:
|
31
37
|
- - "~>"
|
32
38
|
- !ruby/object:Gem::Version
|
33
|
-
version: 1.
|
39
|
+
version: 1.20.0
|
34
40
|
type: :development
|
35
41
|
prerelease: false
|
36
42
|
version_requirements: !ruby/object:Gem::Requirement
|
37
43
|
requirements:
|
38
44
|
- - "~>"
|
39
45
|
- !ruby/object:Gem::Version
|
40
|
-
version: 1.
|
46
|
+
version: 1.20.0
|
41
47
|
- !ruby/object:Gem::Dependency
|
42
48
|
name: bundler
|
43
49
|
requirement: !ruby/object:Gem::Requirement
|
@@ -86,14 +92,14 @@ dependencies:
|
|
86
92
|
requirements:
|
87
93
|
- - "~>"
|
88
94
|
- !ruby/object:Gem::Version
|
89
|
-
version: 0.
|
95
|
+
version: 0.70.0
|
90
96
|
type: :development
|
91
97
|
prerelease: false
|
92
98
|
version_requirements: !ruby/object:Gem::Requirement
|
93
99
|
requirements:
|
94
100
|
- - "~>"
|
95
101
|
- !ruby/object:Gem::Version
|
96
|
-
version: 0.
|
102
|
+
version: 0.70.0
|
97
103
|
- !ruby/object:Gem::Dependency
|
98
104
|
name: bundler-audit
|
99
105
|
requirement: !ruby/object:Gem::Requirement
|