zeebe-client 0.10.1 → 0.12.1
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/.github/dependabot.yml +9 -0
- data/.github/workflows/ci.yml +33 -0
- data/CHANGELOG.md +23 -0
- data/README.md +2 -2
- data/Rakefile +2 -2
- data/examples/demo.rb +0 -5
- data/gen-grpc.sh +2 -2
- data/lib/zeebe/client/proto/gateway_pb.rb +1 -0
- data/lib/zeebe/client/proto/gateway_services_pb.rb +13 -13
- data/lib/zeebe/client/version.rb +1 -1
- data/proto/gateway.proto +6 -4
- data/zeebe-client.gemspec +3 -3
- metadata +11 -10
- data/.travis.yml +0 -20
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ca33deb0d1cfdb40a4814745cc0e61f44e477c21c41ee19da439d8515d5dcae5
|
4
|
+
data.tar.gz: d8058ade9bbdc00a55043c240473534d4829e8a2d7ffd10197a7c370b79ed897
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a8a2db2649ca643094e519123ca2ebaf5676806121af3a9c92333458f07bd2bfa14620888e831a67df6e08a6543655b3467dd2454d0c77d5abcbd3446f7f5ad9
|
7
|
+
data.tar.gz: 47dd8e5b2ce677168546c2e35efdaa84612d22ccbd79dfd8ceb0815a8ce82f5c0d45ae9c18ba4553b72d3e3d943c73339c4505840d0bf0b70fa3b100ba6421ab
|
@@ -0,0 +1,33 @@
|
|
1
|
+
---
|
2
|
+
name: ci
|
3
|
+
|
4
|
+
on:
|
5
|
+
push:
|
6
|
+
branches: [master]
|
7
|
+
pull_request:
|
8
|
+
branches: [master]
|
9
|
+
workflow_dispatch:
|
10
|
+
schedule:
|
11
|
+
- cron: '55 4 * * 4' # weekly on thursday morning
|
12
|
+
|
13
|
+
jobs:
|
14
|
+
build:
|
15
|
+
runs-on: ubuntu-latest
|
16
|
+
strategy:
|
17
|
+
matrix:
|
18
|
+
ruby-version:
|
19
|
+
- '2.5'
|
20
|
+
- '2.6'
|
21
|
+
- '2.7'
|
22
|
+
steps:
|
23
|
+
- uses: actions/checkout@v2
|
24
|
+
- name: Set up Ruby ${{ matrix.ruby-version }}
|
25
|
+
uses: ruby/setup-ruby@v1
|
26
|
+
with:
|
27
|
+
ruby-version: ${{ matrix.ruby-version }}
|
28
|
+
- name: Install dependencies
|
29
|
+
run: |
|
30
|
+
bundle
|
31
|
+
- name: Test
|
32
|
+
run: |
|
33
|
+
bundle exec rake ci
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,28 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 0.12.1 (December 11, 2020)
|
4
|
+
|
5
|
+
- add support for [Zeebe 0.25.3](https://github.com/zeebe-io/zeebe/releases/tag/0.25.3)
|
6
|
+
- drop Travis CI in favor of Github Actions
|
7
|
+
|
8
|
+
## 0.12.0 (November 9, 2020)
|
9
|
+
|
10
|
+
- add support for [Zeebe 0.25.1](https://github.com/zeebe-io/zeebe/releases/tag/0.25.1)
|
11
|
+
|
12
|
+
## 0.11.2 (November 5, 2020)
|
13
|
+
|
14
|
+
- relax `grpc` dependency version constraint from `~> 1.32.0` to `~> 1.32` thus allowing usage of future versions that are compatible due to [semver](https://github.com/grpc/grpc/blob/master/doc/versioning.md), thanks @rusterholz
|
15
|
+
|
16
|
+
## 0.11.1 (November 4, 2020)
|
17
|
+
|
18
|
+
- add support for [Zeebe 0.24.3](https://github.com/zeebe-io/zeebe/releases/tag/0.24.3)
|
19
|
+
|
20
|
+
## 0.11.0 (July 29, 2020)
|
21
|
+
|
22
|
+
- support Ruby 2.7
|
23
|
+
- drop EOL Ruby 2.4 and older
|
24
|
+
- add support for [Zeebe 0.24.1](https://github.com/zeebe-io/zeebe/releases/tag/0.24.1)
|
25
|
+
|
3
26
|
## 0.10.1 (April 24, 2020)
|
4
27
|
|
5
28
|
- add support for [Zeebe 0.23.1](https://github.com/zeebe-io/zeebe/releases/tag/0.23.1)
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Zeebe Ruby Client
|
2
2
|
|
3
|
-
|
3
|
+

|
4
4
|
|
5
5
|
[Zeebe](https://zeebe.io) client containing a simple wrapper for the GRPC protocol used by Zeebe.
|
6
6
|
|
@@ -13,7 +13,7 @@ Install the gem:
|
|
13
13
|
Run a Zeebe instance locally:
|
14
14
|
|
15
15
|
```sh
|
16
|
-
docker run -it --rm -p 26500:26500 camunda/zeebe:0.
|
16
|
+
docker run -it --rm -p 26500:26500 camunda/zeebe:0.25.3
|
17
17
|
```
|
18
18
|
|
19
19
|
And then try the available [demo script](examples/demo.rb).
|
data/Rakefile
CHANGED
@@ -9,11 +9,11 @@ Bundler::Audit::Task.new
|
|
9
9
|
|
10
10
|
task default: [:rubocop, :spec, 'bundle:audit']
|
11
11
|
|
12
|
-
task
|
12
|
+
task ci: ['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.25.3'
|
17
17
|
sleep(10)
|
18
18
|
end
|
19
19
|
|
data/examples/demo.rb
CHANGED
@@ -13,8 +13,3 @@ puts " Brokers:"
|
|
13
13
|
topology.brokers.each do |b|
|
14
14
|
puts " - id: #{b.nodeId}, address: #{b.host}:#{b.port}, partitions: #{b.partitions.map { |p| p.partitionId }}"
|
15
15
|
end
|
16
|
-
|
17
|
-
workflows = zeebe_client.list_workflows(Zeebe::Client::GatewayProtocol::ListWorkflowsRequest.new).workflows
|
18
|
-
|
19
|
-
puts ""
|
20
|
-
puts "Zeebe workflows: #{workflows.inspect}"
|
data/gen-grpc.sh
CHANGED
@@ -6,5 +6,5 @@ genPath="lib/zeebe/client"
|
|
6
6
|
grpc_tools_ruby_protoc "${protoPath}/gateway.proto" --ruby_out="${genPath}" --grpc_out="${genPath}"
|
7
7
|
|
8
8
|
sed -i 's@proto/gateway_pb@zeebe/client/proto/gateway_pb@g' "${genPath}/proto/gateway_services_pb.rb"
|
9
|
-
sed -i 's@
|
10
|
-
sed -i 's@
|
9
|
+
sed -i 's@GatewayProtocol@Zeebe::Client::GatewayProtocol@g' "${genPath}/proto/gateway_pb.rb"
|
10
|
+
sed -i 's@GatewayProtocol@Zeebe::Client::GatewayProtocol@g' "${genPath}/proto/gateway_services_pb.rb"
|
@@ -111,6 +111,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
111
111
|
optional :variables, :string, 5
|
112
112
|
end
|
113
113
|
add_message "gateway_protocol.PublishMessageResponse" do
|
114
|
+
optional :key, :int64, 1
|
114
115
|
end
|
115
116
|
add_message "gateway_protocol.ResolveIncidentRequest" do
|
116
117
|
optional :incidentKey, :int64, 1
|
@@ -24,14 +24,14 @@ module Zeebe::Client::GatewayProtocol
|
|
24
24
|
# - worker is blank (empty string, null)
|
25
25
|
# - timeout less than 1
|
26
26
|
# - maxJobsToActivate is less than 1
|
27
|
-
rpc :ActivateJobs, ActivateJobsRequest, stream(ActivateJobsResponse)
|
27
|
+
rpc :ActivateJobs, ::Zeebe::Client::GatewayProtocol::ActivateJobsRequest, stream(::Zeebe::Client::GatewayProtocol::ActivateJobsResponse)
|
28
28
|
#
|
29
29
|
# Cancels a running workflow instance
|
30
30
|
#
|
31
31
|
# Errors:
|
32
32
|
# NOT_FOUND:
|
33
33
|
# - no workflow instance exists with the given key
|
34
|
-
rpc :CancelWorkflowInstance, CancelWorkflowInstanceRequest, CancelWorkflowInstanceResponse
|
34
|
+
rpc :CancelWorkflowInstance, ::Zeebe::Client::GatewayProtocol::CancelWorkflowInstanceRequest, ::Zeebe::Client::GatewayProtocol::CancelWorkflowInstanceResponse
|
35
35
|
#
|
36
36
|
# Completes a job with the given variables, which allows completing the associated service task.
|
37
37
|
#
|
@@ -43,7 +43,7 @@ module Zeebe::Client::GatewayProtocol
|
|
43
43
|
# FAILED_PRECONDITION:
|
44
44
|
# - the job was marked as failed. In that case, the related incident must be resolved before
|
45
45
|
# the job can be activated again and completed.
|
46
|
-
rpc :CompleteJob, CompleteJobRequest, CompleteJobResponse
|
46
|
+
rpc :CompleteJob, ::Zeebe::Client::GatewayProtocol::CompleteJobRequest, ::Zeebe::Client::GatewayProtocol::CompleteJobResponse
|
47
47
|
#
|
48
48
|
# Creates and starts an instance of the specified workflow. The workflow definition to use to
|
49
49
|
# create the instance can be specified either using its unique key (as returned by
|
@@ -64,10 +64,10 @@ module Zeebe::Client::GatewayProtocol
|
|
64
64
|
# INVALID_ARGUMENT:
|
65
65
|
# - the given variables argument is not a valid JSON document; it is expected to be a valid
|
66
66
|
# JSON document where the root node is an object.
|
67
|
-
rpc :CreateWorkflowInstance, CreateWorkflowInstanceRequest, CreateWorkflowInstanceResponse
|
67
|
+
rpc :CreateWorkflowInstance, ::Zeebe::Client::GatewayProtocol::CreateWorkflowInstanceRequest, ::Zeebe::Client::GatewayProtocol::CreateWorkflowInstanceResponse
|
68
68
|
#
|
69
69
|
# Behaves similarly to `rpc CreateWorkflowInstance`, except that a successful response is received when the workflow completes successfully.
|
70
|
-
rpc :CreateWorkflowInstanceWithResult, CreateWorkflowInstanceWithResultRequest, CreateWorkflowInstanceWithResultResponse
|
70
|
+
rpc :CreateWorkflowInstanceWithResult, ::Zeebe::Client::GatewayProtocol::CreateWorkflowInstanceWithResultRequest, ::Zeebe::Client::GatewayProtocol::CreateWorkflowInstanceWithResultResponse
|
71
71
|
#
|
72
72
|
# Deploys one or more workflows to Zeebe. Note that this is an atomic call,
|
73
73
|
# i.e. either all workflows are deployed, or none of them are.
|
@@ -79,7 +79,7 @@ module Zeebe::Client::GatewayProtocol
|
|
79
79
|
# - it is not a BPMN or YAML file (currently detected through the file extension)
|
80
80
|
# - the resource data is not deserializable (e.g. detected as BPMN, but it's broken XML)
|
81
81
|
# - the workflow is invalid (e.g. an event-based gateway has an outgoing sequence flow to a task)
|
82
|
-
rpc :DeployWorkflow, DeployWorkflowRequest, DeployWorkflowResponse
|
82
|
+
rpc :DeployWorkflow, ::Zeebe::Client::GatewayProtocol::DeployWorkflowRequest, ::Zeebe::Client::GatewayProtocol::DeployWorkflowResponse
|
83
83
|
#
|
84
84
|
# Marks the job as failed; if the retries argument is positive, then the job will be immediately
|
85
85
|
# activatable again, and a worker could try again to process it. If it is zero or negative however,
|
@@ -93,7 +93,7 @@ module Zeebe::Client::GatewayProtocol
|
|
93
93
|
# FAILED_PRECONDITION:
|
94
94
|
# - the job was not activated
|
95
95
|
# - the job is already in a failed state, i.e. ran out of retries
|
96
|
-
rpc :FailJob, FailJobRequest, FailJobResponse
|
96
|
+
rpc :FailJob, ::Zeebe::Client::GatewayProtocol::FailJobRequest, ::Zeebe::Client::GatewayProtocol::FailJobResponse
|
97
97
|
#
|
98
98
|
# Reports a business error (i.e. non-technical) that occurs while processing a job. The error is handled in the workflow by an error catch event. If there is no error catch event with the specified errorCode then an incident will be raised instead.
|
99
99
|
#
|
@@ -103,7 +103,7 @@ module Zeebe::Client::GatewayProtocol
|
|
103
103
|
#
|
104
104
|
# FAILED_PRECONDITION:
|
105
105
|
# - the job is not in an activated state
|
106
|
-
rpc :ThrowError, ThrowErrorRequest, ThrowErrorResponse
|
106
|
+
rpc :ThrowError, ::Zeebe::Client::GatewayProtocol::ThrowErrorRequest, ::Zeebe::Client::GatewayProtocol::ThrowErrorResponse
|
107
107
|
#
|
108
108
|
# Publishes a single message. Messages are published to specific partitions computed from their
|
109
109
|
# correlation keys.
|
@@ -111,7 +111,7 @@ module Zeebe::Client::GatewayProtocol
|
|
111
111
|
# Errors:
|
112
112
|
# ALREADY_EXISTS:
|
113
113
|
# - a message with the same ID was previously published (and is still alive)
|
114
|
-
rpc :PublishMessage, PublishMessageRequest, PublishMessageResponse
|
114
|
+
rpc :PublishMessage, ::Zeebe::Client::GatewayProtocol::PublishMessageRequest, ::Zeebe::Client::GatewayProtocol::PublishMessageResponse
|
115
115
|
#
|
116
116
|
# Resolves a given incident. This simply marks the incident as resolved; most likely a call to
|
117
117
|
# UpdateJobRetries or SetVariables will be necessary to actually resolve the
|
@@ -120,7 +120,7 @@ module Zeebe::Client::GatewayProtocol
|
|
120
120
|
# Errors:
|
121
121
|
# NOT_FOUND:
|
122
122
|
# - no incident with the given key exists
|
123
|
-
rpc :ResolveIncident, ResolveIncidentRequest, ResolveIncidentResponse
|
123
|
+
rpc :ResolveIncident, ::Zeebe::Client::GatewayProtocol::ResolveIncidentRequest, ::Zeebe::Client::GatewayProtocol::ResolveIncidentResponse
|
124
124
|
#
|
125
125
|
# Updates all the variables of a particular scope (e.g. workflow instance, flow element instance)
|
126
126
|
# from the given JSON document.
|
@@ -131,10 +131,10 @@ module Zeebe::Client::GatewayProtocol
|
|
131
131
|
# INVALID_ARGUMENT:
|
132
132
|
# - the given variables document is not a valid JSON document; valid documents are expected to
|
133
133
|
# be JSON documents where the root node is an object.
|
134
|
-
rpc :SetVariables, SetVariablesRequest, SetVariablesResponse
|
134
|
+
rpc :SetVariables, ::Zeebe::Client::GatewayProtocol::SetVariablesRequest, ::Zeebe::Client::GatewayProtocol::SetVariablesResponse
|
135
135
|
#
|
136
136
|
# Obtains the current topology of the cluster the gateway is part of.
|
137
|
-
rpc :Topology, TopologyRequest, TopologyResponse
|
137
|
+
rpc :Topology, ::Zeebe::Client::GatewayProtocol::TopologyRequest, ::Zeebe::Client::GatewayProtocol::TopologyResponse
|
138
138
|
#
|
139
139
|
# Updates the number of retries a job has left. This is mostly useful for jobs that have run out of
|
140
140
|
# retries, should the underlying problem be solved.
|
@@ -145,7 +145,7 @@ module Zeebe::Client::GatewayProtocol
|
|
145
145
|
#
|
146
146
|
# INVALID_ARGUMENT:
|
147
147
|
# - retries is not greater than 0
|
148
|
-
rpc :UpdateJobRetries, UpdateJobRetriesRequest, UpdateJobRetriesResponse
|
148
|
+
rpc :UpdateJobRetries, ::Zeebe::Client::GatewayProtocol::UpdateJobRetriesRequest, ::Zeebe::Client::GatewayProtocol::UpdateJobRetriesResponse
|
149
149
|
end
|
150
150
|
|
151
151
|
Stub = Service.rpc_stub_class
|
data/lib/zeebe/client/version.rb
CHANGED
data/proto/gateway.proto
CHANGED
@@ -15,14 +15,14 @@ message ActivateJobsRequest {
|
|
15
15
|
// the name of the worker activating the jobs, mostly used for logging purposes
|
16
16
|
string worker = 2;
|
17
17
|
// a job returned after this call will not be activated by another call until the
|
18
|
-
// timeout has been reached
|
18
|
+
// timeout (in ms) has been reached
|
19
19
|
int64 timeout = 3;
|
20
20
|
// the maximum jobs to activate by this request
|
21
21
|
int32 maxJobsToActivate = 4;
|
22
22
|
// a list of variables to fetch as the job variables; if empty, all visible variables at
|
23
23
|
// the time of activation for the scope of the job will be returned
|
24
24
|
repeated string fetchVariable = 5;
|
25
|
-
// The request will be completed when at least one job is activated or after the requestTimeout.
|
25
|
+
// The request will be completed when at least one job is activated or after the requestTimeout (in ms).
|
26
26
|
// if the requestTimeout = 0, a default timeout is used.
|
27
27
|
// if the requestTimeout < 0, long polling is disabled and the request is completed immediately, even when no job is activated.
|
28
28
|
int64 requestTimeout = 6;
|
@@ -115,7 +115,7 @@ message CreateWorkflowInstanceResponse {
|
|
115
115
|
|
116
116
|
message CreateWorkflowInstanceWithResultRequest {
|
117
117
|
CreateWorkflowInstanceRequest request = 1;
|
118
|
-
// timeout in
|
118
|
+
// timeout (in ms). the request will be closed if the workflow is not completed
|
119
119
|
// before the requestTimeout.
|
120
120
|
// if requestTimeout = 0, uses the generic requestTimeout configured in the gateway.
|
121
121
|
int64 requestTimeout = 2;
|
@@ -226,6 +226,8 @@ message PublishMessageRequest {
|
|
226
226
|
}
|
227
227
|
|
228
228
|
message PublishMessageResponse {
|
229
|
+
// the unique ID of the message that was published
|
230
|
+
int64 key = 1;
|
229
231
|
}
|
230
232
|
|
231
233
|
message ResolveIncidentRequest {
|
@@ -415,7 +417,7 @@ service Gateway {
|
|
415
417
|
|
416
418
|
/*
|
417
419
|
Reports a business error (i.e. non-technical) that occurs while processing a job. The error is handled in the workflow by an error catch event. If there is no error catch event with the specified errorCode then an incident will be raised instead.
|
418
|
-
|
420
|
+
|
419
421
|
Errors:
|
420
422
|
NOT_FOUND:
|
421
423
|
- no job was found with the given key
|
data/zeebe-client.gemspec
CHANGED
@@ -19,11 +19,11 @@ Gem::Specification.new do |s|
|
|
19
19
|
|
20
20
|
s.required_ruby_version = '>= 2.3'
|
21
21
|
|
22
|
-
s.add_runtime_dependency 'grpc', '~> 1.
|
22
|
+
s.add_runtime_dependency 'grpc', '~> 1.32'
|
23
23
|
|
24
24
|
s.add_development_dependency 'bundler'
|
25
|
-
s.add_development_dependency 'bundler-audit', '~> 0.
|
26
|
-
s.add_development_dependency 'grpc-tools', '~> 1.
|
25
|
+
s.add_development_dependency 'bundler-audit', '~> 0.7.0'
|
26
|
+
s.add_development_dependency 'grpc-tools', '~> 1.32'
|
27
27
|
s.add_development_dependency 'rake'
|
28
28
|
s.add_development_dependency 'rspec'
|
29
29
|
s.add_development_dependency 'rubocop', '~> 0.81.0'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: zeebe-client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.12.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Christian Nicolai
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-12-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: grpc
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 1.
|
19
|
+
version: '1.32'
|
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.32'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: bundler
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -44,28 +44,28 @@ dependencies:
|
|
44
44
|
requirements:
|
45
45
|
- - "~>"
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: 0.
|
47
|
+
version: 0.7.0
|
48
48
|
type: :development
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
52
|
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: 0.
|
54
|
+
version: 0.7.0
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: grpc-tools
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
59
|
- - "~>"
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version: 1.
|
61
|
+
version: '1.32'
|
62
62
|
type: :development
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
66
|
- - "~>"
|
67
67
|
- !ruby/object:Gem::Version
|
68
|
-
version: 1.
|
68
|
+
version: '1.32'
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
name: rake
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
@@ -129,10 +129,11 @@ executables: []
|
|
129
129
|
extensions: []
|
130
130
|
extra_rdoc_files: []
|
131
131
|
files:
|
132
|
+
- ".github/dependabot.yml"
|
133
|
+
- ".github/workflows/ci.yml"
|
132
134
|
- ".gitignore"
|
133
135
|
- ".rubocop.yml"
|
134
136
|
- ".solargraph.yml"
|
135
|
-
- ".travis.yml"
|
136
137
|
- CHANGELOG.md
|
137
138
|
- CODE_OF_CONDUCT.md
|
138
139
|
- Gemfile
|
@@ -168,7 +169,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
168
169
|
- !ruby/object:Gem::Version
|
169
170
|
version: '0'
|
170
171
|
requirements: []
|
171
|
-
rubygems_version: 3.
|
172
|
+
rubygems_version: 3.1.4
|
172
173
|
signing_key:
|
173
174
|
specification_version: 4
|
174
175
|
summary: Zeebe Client
|
data/.travis.yml
DELETED